]> git.donarmstrong.com Git - lilypond.git/blob - debian/rules
fix major/minor version
[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 include VERSION
9
10 export MAILADDRESS = lilypond@packages.debian.org
11
12 # fontconfig blows chunks if it can't write to $HOME; and some
13 # buildds set it to a bogus value.
14 export HOME = /tmp
15
16 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
17 CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
18 CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
19 ifneq (,$(filter $(DEB_HOST_ARCH), i386 kfreebsd-i386))
20   config_opt = --disable-optimising
21   CFLAGS := $(filter-out -O%, $(CFLAGS))
22   CXXFLAGS := $(filter-out -O%, $(CXXFLAGS))
23 else
24 ifneq (,$(filter $(DEB_BUILD_OPTIONS),noopt))
25   config_opt = --disable-optimising
26 else
27   config_opt = --enable-optimising
28 endif
29 endif
30
31 DOC_OPTIONS := WEB_TARGETS="offline"
32 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
33         DOC_OPTIONS := $(DOC_OPTIONS) CPU_COUNT=$(firstword $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))))
34 endif
35
36 %:
37         dh $@ --parallel --with autotools-dev --with python2 --with quilt
38
39
40 ## we need to nuke the parser files, because if there is a mistmatch
41 ## between upstreams bison and our bison, the build will fail epically
42 override_dh_auto_configure:
43         rm -f lily/out/parser.*
44         dh_auto_configure -- --disable-checking --enable-debugging $(config_opt)
45
46 override_dh_auto_build-indep:
47         dh_auto_build
48         $(MAKE) doc $(DOC_OPTIONS)
49
50 override_dh_auto_install-indep:
51         $(MAKE) install-doc $(DOC_OPTIONS) prefix=$(CURDIR)/debian/tmp/usr/
52         $(MAKE) install-info $(DOC_OPTIONS) prefix=$(CURDIR)/debian/tmp/usr
53         rm -rf $(CURDIR)/debian/tmp/usr/share/omf
54         rm -rf $(CURDIR)/debian/tmp/usr/share/doc/lilypond/html/input
55
56 ## Unfortunately, lilypond is kind of broken, and installs the wrong
57 ## info documentation (missing images) if we call their makefile
58 ## directly. They also don't provide an install rule which doesn't
59 ## install the documentation, which we don't care about for the
60 ## architecture dependent build
61 override_dh_auto_install-arch:
62         for dir in `echo */*makefile|xargs -n 1 dirname|grep -v Documentation`; do \
63                 $(MAKE) --no-builtin-rules PACKAGE=LILYPOND package=lilypond -C $$dir install $(DOC_OPTIONS) prefix=$(CURDIR)/debian/tmp/usr/; \
64         done;
65
66 ## we need to nuke the parser files, because if there is a mistmatch
67 ## between upstreams bison and our bison, the build will fail epically
68 override_dh_auto_clean:
69         rm -f lily/out/parser.*
70         dh_auto_clean
71
72 ## we need to install only the png, jpg, css, ly and english html
73 ## files into the doc-html package, and only the english pdfs into the
74 ## doc-pdf package. Because dh_install doesn't support regexes, we'll
75 ## use find to replace the contents of the .install file before we
76 ## call dh_install
77 override_dh_install:
78         /bin/echo -e 'usr/share/doc/lilypond/html/*/*/*.ly\nusr/share/doc/lilypond/html/*/*/*.png' \
79                 > $(CURDIR)/debian/lilypond-doc-html.install
80         /bin/echo -e 'usr/share/doc/lilypond/html/*/*/*.jpg\nusr/share/doc/lilypond/html/*/*/*.css' \
81                 >> $(CURDIR)/debian/lilypond-doc-html.install
82         find $(CURDIR)/debian/tmp/ -type f \
83                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.html' \
84                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-html.install
85         /bin/echo -e ''> $(CURDIR)/debian/lilypond-doc-pdf.install
86         find $(CURDIR)/debian/tmp/ -type f \
87                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.pdf' \
88                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
89         find $(CURDIR)/debian/tmp/ -type f \
90                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.preview.pdf' \
91                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
92         dh_install --list-missing
93
94 override_dh_python2:
95         dh_python2 --verbose
96         dh_python2 --verbose usr/share/lilypond/$(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_LEVEL)/python/
97
98 override_dh_compress:
99         dh_compress -X.ly
100
101 override_dh_installdocs:
102         dh_installdocs
103         for a in $(wildcard $(CURDIR)/debian/*.doc-base-special); do \
104                 package=`basename $$a .doc-base-special`; \
105                 install -d debian/$$package/usr/share/doc-base; \
106                 install -m0644 $$a debian/$$package/usr/share/doc-base/$$package; \
107         done;
108
109 ## this rule will update debian/control and the per-language install
110 ## files; all of the files it generates/modifies should be included in
111 ## the Debian package and should not need to be regenerated or
112 ## modified.
113 update-doc-packages:
114         perl debian/update_doc_packages