]> git.donarmstrong.com Git - lilypond.git/blob - debian/rules
release: 1.3.42
[lilypond.git] / debian / rules
1 #!/usr/bin/make -f
2 # Made with the aid of debhelper by Joey Hess,
3 # based on the sample debian/rules file for GNU hello by Ian Jackson.
4 #
5 # This is free software; see the GNU General Public Licence
6 # version 2 or later for copying conditions.  There is NO warranty.
7 #
8 # Currently maintained by Anthony Fok <foka@debian.org>
9 # for Debian GNU/Linux.
10
11 package = lilypond1.3
12
13 SHELL = /bin/sh
14 r = debian/tmp
15 TMP = `pwd`/debian/tmp
16 d = usr/share/doc/$(package)
17
18 # Uncomment this to turn on verbose mode.
19 #export DH_VERBOSE=1
20
21 # This is the debhelper compatability version to use.
22 export DH_COMPAT=1
23
24 build: build-stamp
25 build-stamp:
26         dh_testdir
27
28         ./configure --disable-checking --disable-debugging \
29                 --enable-printing --prefix=/usr --enable-optimise \
30                 --enable-shared \
31                 --infodir='$${prefix}/share/info' \
32                 --mandir='$${prefix}/share/man'
33         $(MAKE) all
34         $(MAKE) -C Documentation
35         $(MAKE) -C Documentation/user ps
36         $(MAKE) -C Documentation/pictures pngs
37
38         touch build-stamp
39
40 clean:
41         dh_testdir
42         dh_testroot
43         rm -f build-stamp install-stamp
44         -$(MAKE) distclean
45         rm -f stepmake/stepmake/aclocal.m4
46         dh_clean
47
48         # Correct the owner of the out/dummy.dep files when built with sudo.
49         if [ -n "$$SUDO_USER" -a -n "$$SUDO_GID" ]; then \
50                 find . -user root | xargs -r chown --dereference $$SUDO_USER.$$SUDO_GID; \
51         fi
52
53 install: build
54         dh_testdir
55         dh_testroot
56         dh_clean -k
57         dh_installdirs usr/share/doc/texmf \
58                 $(d)/examples \
59                 usr/share/emacs/site-lisp \
60                 usr/share/texmf/tex \
61                 usr/share/texmf/fonts/source/public \
62                 usr/share/texmf/fonts/afm/public \
63                 usr/share/texmf/fonts/tfm/public
64         ln -fs ../$(package) $(r)/usr/share/doc/texmf/lilypond
65
66         $(MAKE) prefix=$(TMP)/usr install
67
68         ln -s ../../lilypond/tex $(r)/usr/share/texmf/tex/lilypond
69         ln -s ../../../../lilypond/mf $(r)/usr/share/texmf/fonts/source/public/lilypond
70         ln -s ../../../../lilypond/afm $(r)/usr/share/texmf/fonts/afm/public/lilypond
71         ln -s ../../../../lilypond/tfm $(r)/usr/share/texmf/fonts/tfm/public/lilypond
72
73 # Build architecture-independent files here.
74 binary-indep: build install
75 # We have nothing to do by default.
76
77 binary-arch: build install
78         dh_testdir
79         dh_testroot
80         cp -av lilypond-mode.el $(r)/usr/share/emacs/site-lisp/
81         dh_installdocs DEDICATION TODO *.txt \
82                 Documentation/pictures/out/*.png \
83                 Documentation/out/*.txt \
84                 Documentation/*/out/[a-z]*.dvi \
85                 Documentation/*/out/*.ps
86         mkdir $(r)/$(d)/bibliography $(r)/$(d)/misc
87         cp -a Documentation/bibliography/*.bib $(r)/$(d)/bibliography/
88         cp -a Documentation/misc/[ACN]* $(r)/$(d)/misc/
89 #       dh_installexamples input
90         cp -aP `find input mutopia \( -name '*.*ly' -o -name '*.abc' -o -name '*.tex' -o -name 'TODO' \)` \
91                 $(r)/$(d)/examples
92         for i in `find $(r)/$(d)/examples/ -type d -name out`; do \
93                 mv -fv $$i/* $$i/..; rmdir $$i; done
94 #       dh_installmenu
95         dh_installemacsen
96 #       dh_installcron
97 #       dh_installmanpages
98 #       dh_undocumented
99         dh_installchangelogs -k CHANGES
100         dh_link
101         dh_strip
102         dh_compress
103         dh_fixperms
104 #       dh_suidregister
105         dh_installdeb
106         dh_shlibdeps
107         dh_gencontrol
108 #       dh_makeshlibs
109         dh_md5sums
110         dh_builddeb
111
112 binary: binary-indep binary-arch
113 .PHONY: build clean install binary-indep binary-arch binary