~ubuntu-branches/ubuntu/trusty/openoffice.org-hyphenation/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-02-08 16:17:53 UTC
  • Revision ID: james.westby@ubuntu.com-20070208161753-v747sfu5uoz37lz8
Tags: 0.2
Add text of the LPPL to debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
 
 
4
# Uncomment this to turn on verbose mode.
 
5
#export DH_VERBOSE=1
 
6
 
 
7
 
 
8
build: build-stamp
 
9
 
 
10
build-stamp:
 
11
        dh_testdir
 
12
        touch $@
 
13
 
 
14
clean:
 
15
        dh_testdir
 
16
        dh_testroot
 
17
        rm -f build-stamp
 
18
        dh_clean 
 
19
 
 
20
install: build
 
21
        dh_testdir
 
22
        dh_testroot
 
23
        dh_clean -k
 
24
        dh_installdirs
 
25
        installdeb-myspell --srcdir=$(CURDIR)
 
26
        install -m644 *.dic \
 
27
                debian/openoffice.org-hyphenation/usr/share/myspell/dicts/
 
28
 
 
29
# Build architecture-independent files here.
 
30
binary-indep: build install
 
31
        dh_testdir
 
32
        dh_testroot
 
33
        dh_installchangelogs 
 
34
        dh_installdocs README*
 
35
        dh_link
 
36
        dh_compress
 
37
        dh_fixperms
 
38
        dh_installdeb
 
39
        dh_gencontrol
 
40
        dh_md5sums
 
41
        dh_builddeb
 
42
 
 
43
# Build architecture-dependent files here.
 
44
binary-arch: build install
 
45
# We have nothing to do by default.
 
46
 
 
47
binary: binary-indep binary-arch
 
48
.PHONY: build clean binary-indep binary-arch binary install configure