From 75ff356779f7d3791ef97b2669e5ca1d80cbed3a Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 22 Aug 2022 02:12:39 +0200 Subject: add package for helm --- helm/debian/changelog | 5 +++++ helm/debian/compat | 1 + helm/debian/control | 11 +++++++++++ helm/debian/install | 1 + helm/debian/rules | 16 ++++++++++++++++ helm/debian/source/format | 1 + 6 files changed, 35 insertions(+) create mode 100644 helm/debian/changelog create mode 100644 helm/debian/compat create mode 100644 helm/debian/control create mode 100644 helm/debian/install create mode 100755 helm/debian/rules create mode 100644 helm/debian/source/format (limited to 'helm/debian') diff --git a/helm/debian/changelog b/helm/debian/changelog new file mode 100644 index 0000000..13b496c --- /dev/null +++ b/helm/debian/changelog @@ -0,0 +1,5 @@ +helm (3.9.3-1) unstable; urgency=medium + + * initial package release. + + -- Christian Pointner Sat, 22 Aug 2022 02:08:16 +0200 diff --git a/helm/debian/compat b/helm/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/helm/debian/compat @@ -0,0 +1 @@ +9 diff --git a/helm/debian/control b/helm/debian/control new file mode 100644 index 0000000..d2e31e2 --- /dev/null +++ b/helm/debian/control @@ -0,0 +1,11 @@ +Source: helm +Maintainer: Christian Pointner +Section: utils +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 9), wget, ca-certificates + +Package: helm +Architecture: amd64 i386 +Depends: ${misc:Depends} +Description: Helm is a package manager for Kubernetes diff --git a/helm/debian/install b/helm/debian/install new file mode 100644 index 0000000..6e5bbcc --- /dev/null +++ b/helm/debian/install @@ -0,0 +1 @@ +usr/bin/helm diff --git a/helm/debian/rules b/helm/debian/rules new file mode 100755 index 0000000..52d22fd --- /dev/null +++ b/helm/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f +include /usr/share/dpkg/pkg-info.mk +%: + dh $@ + +override_dh_auto_configure: + +override_dh_auto_build: + make VERSION=$(DEB_VERSION_UPSTREAM) $(DEB_BUILD_ARCH)/helm + +override_dh_auto_install: + install -d $$(pwd)/debian/tmp/usr/bin/ + install -m 755 $$(pwd)/$(DEB_BUILD_ARCH)/helm $$(pwd)/debian/tmp/usr/bin/helm + +override_dh_auto_clean: + make VERSION=$(DEB_VERSION_UPSTREAM) clean diff --git a/helm/debian/source/format b/helm/debian/source/format new file mode 100644 index 0000000..d3827e7 --- /dev/null +++ b/helm/debian/source/format @@ -0,0 +1 @@ +1.0 -- cgit v1.2.3