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
# 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
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" \; ; \
[ ! -e data/extra.tar ] || tar -C $(PKG) -xf data/extra.tar
[ ! -e data/static.tar ] || tar -C $(PKG) -xf data/static.tar
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 build-arch build-indep clean binary-indep binary-arch binary
|