From bf097a7cef5d1d112bd4a73c1c4da25bfcac3a22 Mon Sep 17 00:00:00 2001 From: Bjørn Mork Date: Mon, 22 Aug 2016 14:47:19 +0200 Subject: debian: initial packaging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bjørn Mork --- .gitignore | 4 ++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 17 +++++++++++++++++ debian/rules | 11 +++++++++++ 5 files changed, 38 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100755 debian/rules diff --git a/.gitignore b/.gitignore index 1134291..5f10b70 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,7 @@ CMakeCache.txt CMakeFiles *.cmake install_manifest.txt +debian/files +debian/debhelper-build-stamp +debian/*.debhelper.log +debian/*.substvars diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1797edc --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +umbim (0.0.2-1) UNRELEASED; urgency=low + + * Initial version + + -- Bjørn Mork Mon, 22 Aug 2016 14:45:38 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..4bb50d5 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: umbim +Section: devel +Priority: optional +Maintainer: Bjørn Mork +Uploaders: Bjørn Mork +Build-Depends: debhelper (>= 8.1.3), libubox +Standards-Version: 3.9.2 + +Package: umbim +Section: libs +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: umbim + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6c35c0d --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) + +%: + dh $@ + +override_dh_auto_configure: + cmake CMakeLists.txt -DCMAKE_INSTALL_PREFIX=/usr + +override_dh_auto_clean: override_dh_auto_configure -- cgit v1.2.3