]> git.donarmstrong.com Git - lilypond.git/blob - debian/rules
Delete ald rules sections
[lilypond.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for LilyPond in Debian.
3 #
4 # This is free software; see the GNU General Public Licence
5 # version 2 or later for copying conditions.  There is NO warranty.
6 #
7
8 export MAILADDRESS = lilypond@packages.debian.org
9
10 # fontconfig blows chunks if it can't write to $HOME; and some
11 # buildds set it to a bogus value.
12 export HOME = /tmp
13
14 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
15 CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
16 CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
17 ifneq (,$(filter $(DEB_HOST_ARCH), i386 kfreebsd-i386))
18   config_opt = --disable-optimising
19   CFLAGS := $(filter-out -O%, $(CFLAGS))
20   CXXFLAGS := $(filter-out -O%, $(CXXFLAGS))
21 else
22   config_opt = --enable-optimising
23 endif
24
25 DOC_OPTIONS := WEB_TARGETS="offline"
26 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
27         DOC_OPTIONS := $(DOC_OPTIONS) $(DEB_BUILD_OPTIONS) CPU_COUNT=$(firstword $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))))
28 endif
29
30 %:
31         dh $@ --parallel --with autotools-dev --with python2
32
33
34 override_dh_auto_configure: 
35         dh_auto_configure -- --disable-checking --enable-debugging $(config_opt)
36
37 override_dh_auto_build-indep:
38         dh_auto_build
39         $(MAKE) $(DOC_OPTIONS) doc
40
41 override_dh_auto_install-indep:
42         $(MAKE) install-doc prefix=$(CURDIR)/debian/tmp/usr/
43         rm -rf $(CURDIR)/debian/tmp/usr/share/omf
44         rm -rf $(CURDIR)/debian/tmp/usr/share/doc/lilypond/html/input
45
46 ## we need to install only the png, jpg, css, ly and english html
47 ## files into the doc-html package, and only the english pdfs into the
48 ## doc-pdf package. Because dh_install doesn't support regexes, we'll
49 ## use find to replace the contents of the .install file before we
50 ## call dh_install
51 override_dh_install:
52         /bin/echo -e 'usr/share/doc/lilypond/html/*/*/*.ly\nusr/share/doc/lilypond/html/*/*/*.png' \
53                 > $(CURDIR)/debian/lilypond-doc-html.install
54         /bin/echo -e 'usr/share/doc/lilypond/html/*/*/*.jpg\nusr/share/doc/lilypond/html/*/*/*.css' \
55                 >> $(CURDIR)/debian/lilypond-doc-html.install
56         find $(CURDIR)/debian/tmp/ -type f \
57                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.html' \
58                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-html.install
59         /bin/echo -e ''> $(CURDIR)/debian/lilypond-doc-pdf.install
60         find $(CURDIR)/debian/tmp/ -type f \
61                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.pdf' \
62                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
63         find $(CURDIR)/debian/tmp/ -type f \
64                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.preview.pdf' \
65                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
66         dh_install --list-missing
67
68
69 ## this rule will update debian/control and the per-language install
70 ## files; all of the files it generates/modifies should be included in
71 ## the Debian package and should not need to be regenerated or
72 ## modified.
73 update-doc-packages:
74         perl debian/update_doc_packages