#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 PKGNAME=$(shell grep "^Package: " debian/control | head -1 | cut -f 2 -d\ ) PKG=$(shell pwd)/debian/$(PKGNAME) LOCALEDIR=$(PKG)/usr/share/locale-langpack build: dh_testdir clean: dh_testdir dh_testroot dh_clean binary-arch: binary-indep: dh_testdir dh_testroot dh_installdirs -i mkdir -p $(LOCALEDIR) cd data; \ find -type d -exec mkdir -p "$(LOCALEDIR)/{}" \; ; \ find -type f -name "*.po" -exec sh -c "N='{}'; msgfmt -o $(LOCALEDIR)/\$${N%.po}.mo \$$N" \; install -o root -g root -m 0644 debian/lintian \ debian/$(PKGNAME)/usr/share/lintian/overrides/language-pack-qcv-base # Words for childsplay (pacman) dh_install --sourcedir=data/qcv/ words-qcv /usr/share/childsplay/lib/PackidData/ dh_link -i dh_installdocs -i dh_installchangelogs -i dh_compress -i dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i -- -Z bzip2 binary: binary-arch binary-indep .PHONY: build clean binary-indep binary-arch binary