summaryrefslogtreecommitdiff
path: root/k9s/debian
diff options
context:
space:
mode:
Diffstat (limited to 'k9s/debian')
-rw-r--r--k9s/debian/changelog5
-rw-r--r--k9s/debian/compat1
-rw-r--r--k9s/debian/control11
-rw-r--r--k9s/debian/install1
-rwxr-xr-xk9s/debian/rules16
-rw-r--r--k9s/debian/source/format1
6 files changed, 35 insertions, 0 deletions
diff --git a/k9s/debian/changelog b/k9s/debian/changelog
new file mode 100644
index 0000000..90df2bd
--- /dev/null
+++ b/k9s/debian/changelog
@@ -0,0 +1,5 @@
+k9s (0.27.3-1) unstable; urgency=medium
+
+ * initial package release.
+
+ -- Christian Pointner <equinox@spreadspace.org> Tue, 20 Apr 2023 10:55:30 +0100
diff --git a/k9s/debian/compat b/k9s/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/k9s/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/k9s/debian/control b/k9s/debian/control
new file mode 100644
index 0000000..f668fe7
--- /dev/null
+++ b/k9s/debian/control
@@ -0,0 +1,11 @@
+Source: k9s
+Maintainer: Christian Pointner <equinox@spreadspace.org>
+Section: utils
+Priority: optional
+Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 9), wget, ca-certificates
+
+Package: k9s
+Architecture: amd64 arm64
+Depends: ${misc:Depends}
+Description: Kubernetes CLI To Manage Your Clusters In Style (binaries only)
diff --git a/k9s/debian/install b/k9s/debian/install
new file mode 100644
index 0000000..ed0a40f
--- /dev/null
+++ b/k9s/debian/install
@@ -0,0 +1 @@
+usr/bin/k9s
diff --git a/k9s/debian/rules b/k9s/debian/rules
new file mode 100755
index 0000000..713fd85
--- /dev/null
+++ b/k9s/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)/k9s
+
+override_dh_auto_install:
+ install -d $$(pwd)/debian/tmp/usr/bin/
+ install -m 755 $$(pwd)/$(DEB_BUILD_ARCH)/k9s $$(pwd)/debian/tmp/usr/bin/k9s
+
+override_dh_auto_clean:
+ make VERSION=$(DEB_VERSION_UPSTREAM) clean
diff --git a/k9s/debian/source/format b/k9s/debian/source/format
new file mode 100644
index 0000000..d3827e7
--- /dev/null
+++ b/k9s/debian/source/format
@@ -0,0 +1 @@
+1.0