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
# Made with the aid of debmake, by Christoph Lameter,
# based on the sample debian/rules file for GNU hello by Ian Jackson.
#
package=iczech
build:
dh_testdir
make
clean:
dh_testdir
dh_testroot
dh_clean
-rm -f czech.a-z.cnt
-rm -f czech.a-z
-rm -f czech.a-z.stat
-rm -f czech.hash
binary-indep: build
binary-arch: build
dh_testdir
dh_testroot
dh_installdocs
dh_installchangelogs
installdeb-ispell # This calls internally to dh_installdebconf
dh_installdirs
install -d debian/tmp/usr/lib/ispell
install -g root -m 644 -o root czech.aff debian/tmp/usr/lib/ispell/
install -g root -m 644 -o root czech.hash debian/tmp/usr/lib/ispell/
#
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: binary binary-arch binary-indep clean checkroot
|