1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/make -f
package=tkcdlayout
build:
@echo Nothing to do!
clean:
dh_testdir
dh_clean
binary-indep:
# There are no architecture-dependent files to be uploaded
# generated by this package. If there were any they would be
# made here.
binary-indep:
dh_testdir
dh_testroot
-rm -rf debian/tmp
-rm -f debian/*.debhelper
# Setup the directory-structure
dh_installdirs usr/bin
# Install the program itself
install -p -m 755 -o root -g root tkcdlayout GetCDTitle NewCDLayout.pl debian/tmp/usr/bin
# Install sample config and jpegs mentioned in README
dh_installexamples config.sample *.jpg
# Install everything
dh_installdocs README README.Troubleshooting
dh_installchangelogs
dh_strip
dh_compress
dh_fixperms
dh_installmenu
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: binary binary-arch binary-indep clean build
|