X-Git-Url: https://git.decadent.org.uk/gitweb/?p=emusic-remote.git;a=blobdiff_plain;f=debian%2Frules;fp=debian%2Frules;h=e26014d70305c7cda784043c7aa425273081f977;hp=0000000000000000000000000000000000000000;hb=60bca12288ddac2dd6d066a2c96c458320810bf9;hpb=d8cd0729f0a1d31f748d25cb8319b41124f59313 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e26014d --- /dev/null +++ b/debian/rules @@ -0,0 +1,39 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + #dh_installdirs + +# Build architecture-independent files here. +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_installmenu + dh_installman + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install