diff options
author | andre | 2014-06-18 09:47:16 +0000 |
---|---|---|
committer | andre | 2014-06-18 09:47:16 +0000 |
commit | b329cabdc76ed8b8210e05b83db25897ded47a1f (patch) | |
tree | 75f09e2972fd5262279fde1661bcf58964707e08 /debian | |
parent | 98c56758c170b3a34dc6cd9a9568775d149f2ab1 (diff) | |
download | ivycontrolpanel-b329cabdc76ed8b8210e05b83db25897ded47a1f.zip ivycontrolpanel-b329cabdc76ed8b8210e05b83db25897ded47a1f.tar.gz ivycontrolpanel-b329cabdc76ed8b8210e05b83db25897ded47a1f.tar.bz2 ivycontrolpanel-b329cabdc76ed8b8210e05b83db25897ded47a1f.tar.xz |
upgrade debian/compat priority
previsouly was default priority (1), now up to date (9). See man debhelper.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/compat | 1 | ||||
-rwxr-xr-x | debian/rules | 20 |
2 files changed, 11 insertions, 10 deletions
diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/rules b/debian/rules index 14f36aa..fa02c99 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ configure-stamp: touch configure-stamp build: build-stamp -build-stamp: configure-stamp +build-stamp: configure-stamp dh_testdir pod2man src/$(package) > $(package).1 touch build @@ -23,28 +23,28 @@ clean: dh_testroot rm -f build-stamp configure-stamp -$(MAKE) clean - dh_clean + dh_clean install: build dh_testdir dh_testroot - dh_clean -k + dh_clean -k dh_installdirs - install -m755 src/$(package) $(CURDIR)/debian/tmp/usr/bin/$(package) - install -m644 src/*.pm $(CURDIR)/debian/tmp/usr/lib/$(package) - install -m644 images/*.bmp $(CURDIR)/debian/tmp/usr/share/$(package) + install -m755 src/$(package) $(CURDIR)/debian/$(package)/usr/bin/$(package) + install -m644 src/*.pm $(CURDIR)/debian/$(package)/usr/lib/$(package) + install -m644 images/*.bmp $(CURDIR)/debian/$(package)/usr/share/$(package) dh_installman $(package).1 - + binary-indep: build install binary-arch: build install dh_testdir dh_testroot - dh_installchangelogs + dh_installchangelogs dh_installdocs dh_installexamples - dh_install --source=$(CURDIR)/debian/tmp + dh_install --source=$(CURDIR)/debian/$(package) # dh_installmenu -# dh_installdebconf +# dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam |