~ubuntu-branches/ubuntu/lucid/language-pack-sd-base/lucid-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Ubuntu automatic language-pack builder
  • Date: 2011-12-16 12:31:59 UTC
  • Revision ID: package-import@ubuntu.com-20111216123159-8a28xem2iimrc8jx
Tags: 1:10.04+20110931
Initial Release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        mkdir -p $(LOCALEDIR)
25
25
        cd data; \
26
26
          find -type d -exec mkdir -p "$(LOCALEDIR)/{}" \; ; \
27
 
          find -type f -name "*.po" -exec sh -c "N='{}'; msgfmt -o $(LOCALEDIR)/\$${N%.po}.mo \$$N" \;
 
27
          find -type f -name "*.po" -exec sh -c "N='{}'; msgfmt -o $(LOCALEDIR)/\$${N%.po}.mo \$$N" \; ; \
28
28
 
29
29
        [ ! -e data/extra.tar ] || tar -C $(PKG) -xf data/extra.tar
30
 
        [ ! -e data/mozilla.tar.gz ] || tar -C $(PKG) -xzf data/mozilla.tar.gz
31
30
        [ ! -e data/static.tar ] || tar -C $(PKG) -xf data/static.tar
32
31
        
33
32
        dh_installdocs -i
41
40
 
42
41
binary: binary-arch binary-indep
43
42
 
44
 
.PHONY: build clean binary-indep binary-arch binary
 
43
.PHONY: build build-arch build-indep clean binary-indep binary-arch binary
45
44