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 44
|
#!/usr/bin/make -f
package = backintime-notify
clean:
dh_testdir
dh_clean
rm -f build
install: build
#install plugin
dh_install plugins/*.py /usr/share/backintime/plugins
#install copyright file
#dh_installdirs /usr/share/doc/backintime-gnome
dh_install debian/copyright /usr/share/doc/backintime-notify
build:
touch build
build-arch: build
build-indep: build
binary-indep: install
dh_testdir -i
dh_testroot -i
#dh_installdocs -i NEWS
#dh_installchangelogs -i ChangeLog
#dh_strip -i
#dh_compress -i
dh_fixperms -i
dh_installdeb -i
#dh_shlibdeps -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
binary-arch: install
binary: binary-indep
.PHONY: binary binary-arch binary-indep clean
|