From 2b31572424504f5a39ddd24e9264e174ea28096d Mon Sep 17 00:00:00 2001 From: VG Date: Thu, 3 Nov 2016 16:46:46 +0100 Subject: first commit (currently just a copy of meh) --- debian/rules | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 debian/rules (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a479493 --- /dev/null +++ b/debian/rules @@ -0,0 +1,37 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# debian version rule: +# 0.0 < 0.5 < 0.10 < 0.99 < 1 < 1.0~rc1 < 1.0 < 1.0+b1 < 1.0+nmu1 < 1.1 < 2.0 + +VERSION = 0.3 +PACKAGEVERSION = $(VERSION)+$(shell date +%Y%m%d%H%M%S) + +%: + dh $@ + +# avoid errors on stretch and sid builds. Error : +# dpkg-shlibdeps: error: no dependency information found for +# /usr/lib/ld-linux-armhf.so.3 (used >by debian/meh/bin/meh) +# fix by telling dh_shlibdeps it should ignore not found libs: +override_dh_shlibdeps: + dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info + +# note for build: +# Delete manpages installed from upstream since not gzipped, and let debian +# helper do it instead. +override_dh_auto_clean: +override_dh_auto_test: +override_dh_auto_build: +override_dh_auto_install: + make -C upstream + make -C upstream install PREFIX=../debian/meh/usr + rm -f ../debian/meh/usr/share/man/man1/meh.1 + dh_installman + + +override_dh_gencontrol: + dh_gencontrol -- -v$(PACKAGEVERSION) -- cgit v1.2.3