]> git.donarmstrong.com Git - lilypond.git/blob - debian/rules
patch::: 1.3.117.jcn2
[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 compatibility version to use.
22 export DH_COMPAT=1
23
24 build: build-stamp
25 build-stamp:
26         dh_testdir
27
28         ./configure --enable-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
44         -$(MAKE) distclean
45         # Remove obsolete files which are still in the upstream tarball (1.3.42)
46         rm -f debian/control.in debian/doc-base debian/prerm
47         dh_clean
48
49         # Correct the owner of the out/dummy.dep files when built with sudo.
50         if [ -n "$$SUDO_USER" -a -n "$$SUDO_GID" ]; then \
51                 find . -user root | xargs -r chown --dereference $$SUDO_USER.$$SUDO_GID; \
52         fi
53
54 install: build
55         dh_testdir
56         dh_testroot
57         dh_clean -k
58         dh_installdirs usr/share/doc/texmf \
59                 $(d)/examples \
60                 usr/share/emacs/site-lisp \
61                 usr/share/texmf/tex \
62                 usr/share/texmf/fonts/source/public \
63                 usr/share/texmf/fonts/afm/public \
64                 usr/share/texmf/fonts/tfm/public
65         ln -fs ../$(package) $(r)/usr/share/doc/texmf/lilypond
66
67         $(MAKE) prefix=$(TMP)/usr install
68
69         ln -s ../../lilypond/tex $(r)/usr/share/texmf/tex/lilypond
70         ln -s ../../../../lilypond/mf $(r)/usr/share/texmf/fonts/source/public/lilypond
71         ln -s ../../../../lilypond/afm $(r)/usr/share/texmf/fonts/afm/public/lilypond
72         ln -s ../../../../lilypond/tfm $(r)/usr/share/texmf/fonts/tfm/public/lilypond
73
74         # Change from an absolute symlink to a relative symlink (Lintian)
75         if [ -L $(r)/usr/share/lilypond/cmtfm ]; then \
76                 rm -f $(r)/usr/share/lilypond/cmtfm; \
77                 ln -s ../texmf/fonts/tfm/public/cm $(r)/usr/share/lilypond/cmtfm; \
78         fi
79
80 # Build architecture-independent files here.
81 binary-indep: build install
82 # We have nothing to do by default.
83
84 binary-arch: build install
85         dh_testdir
86         dh_testroot
87         cp -av lilypond-mode.el lilypond-font-lock.el \
88                 $(r)/usr/share/emacs/site-lisp/
89         dh_installdocs DEDICATION NEWS ROADMAP *.txt \
90                 Documentation/pictures/out/*.png \
91                 Documentation/out/*.txt \
92                 Documentation/*/out/[a-z]*.dvi \
93                 Documentation/*/out/*.ps
94         mkdir $(r)/$(d)/bibliography $(r)/$(d)/misc
95         cp -a Documentation/bibliography/*.bib $(r)/$(d)/bibliography/
96         cp -a Documentation/misc/[ACN]* $(r)/$(d)/misc/
97 #       dh_installexamples input
98         cp -aP `find input mutopia \( -name '*.*ly' -o -name '*.abc' -o -name '*.tex' -o -name 'TODO' \)` \
99                 $(r)/$(d)/examples
100         for i in `find $(r)/$(d)/examples/ -type d -name out`; do \
101                 mv -fv $$i/* $$i/..; rmdir $$i; done
102 #       dh_installmenu
103         dh_installemacsen
104 #       dh_installcron
105 #       dh_installmanpages
106 #       dh_undocumented
107 #       dh_installchangelogs -k CHANGES
108 #       dh_installchangelogs CHANGES
109 # These give all errrors.
110 # Strange, in the maint-guide, it says add the upstream changelog name.
111 # Let's install as doc, then.  --jcn
112         dh_installdocs CHANGES
113         dh_installchangelogs
114         dh_link
115         dh_strip
116         dh_compress
117         dh_fixperms
118 #       dh_suidregister
119         dh_installdeb
120         dh_shlibdeps
121         dh_gencontrol
122 #       dh_makeshlibs
123         dh_md5sums
124         dh_builddeb
125
126 binary: binary-indep binary-arch
127 .PHONY: build clean install binary-indep binary-arch binary