]> git.donarmstrong.com Git - lilypond.git/blob - make/lilypond.redhat.spec.in
f64db8489d0579ab35692ed09fe498a956344d92
[lilypond.git] / make / lilypond.redhat.spec.in
1 # -*-rpm-spec-mode-*-
2
3 %define info yes
4 %define docdir %{_docdir}/lilypond/
5
6 Name: lilypond
7 Version: @TOPLEVEL_VERSION@
8 Release: 1
9 License: GPL
10 Group: Applications/Publishing
11 Source0: ftp.lilypond.org:/pub/LilyPond/development/lilypond-@TOPLEVEL_VERSION@.tar.gz
12 Summary: Create and print music notation 
13 URL: http://www.lilypond.org/
14 BuildRoot: %{_tmppath}/%{name}-%{version}-root
15
16
17 Buildrequires: t1utils bison flex mftrace ImageMagick
18
19 #  requires texinfo >= 4.6 really, otherwise the info files fuck up.
20 # however, that's still not standard on RH 9, so we'll leave it at  this
21 # for now
22
23 Buildrequires: texinfo
24 Requires: tetex  tetex-latex libstdc++ python 
25 Requires: guile >= 1.6.4-7
26
27 %description
28 LilyPond lets you create music notation.  It produces
29 beautiful sheet music from  a high-level description file.
30
31 %package documentation
32 Summary:  All LilyPond documentation, in HTML
33 Group: Applications/Publishing
34 # BuildArchitectures: noarch
35
36 %description documentation
37 Documentation and example files of LilyPond. An index is available at
38 %{docdir}/web/Documentation/out-www/index.html
39
40 %prep
41 %setup
42
43 %build
44
45 # DO NOT use % { configure } , it hardcodes all paths, runs libtool,
46 # so we can't do make prefixix=/tmp/ install.
47
48 # In fact, do not take out the spaces between % and { in the above comment,
49 # because RPM will gladly do a substitution anyway.
50
51 ./configure --disable-checking --prefix=%{_prefix} --enable-optimising
52
53
54 make MAKE_PFA_FILES=1 all
55 make -C mf/ pfa
56
57 # make info
58 make -C Documentation
59
60 # make  html
61 make web top-web 
62 make -C Documentation/user omf
63
64 %install
65
66
67 rm -rf $RPM_BUILD_ROOT
68 mkdir -p $RPM_BUILD_ROOT/tmp/lilypond-rpm-doc
69
70 strip lily/out/lilypond 
71 make prefix="$RPM_BUILD_ROOT%{_prefix}" infodir="$RPM_BUILD_ROOT%{_infodir}" MAKE_PFA_FILES=1 mandir="$RPM_BUILD_ROOT%{_mandir}" install
72
73 %if %{info}
74 rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
75 gzip -9fn $RPM_BUILD_ROOT%{_infodir}/*
76 %endif
77
78 mkdir -p $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/site-start.d
79 install -m 644 lilypond-mode.el lilypond-font-lock.el lilypond-indent.el lilypond.words $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/
80 install -m 644 lilypond-init.el $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/site-start.d
81
82 gzip -9fn $RPM_BUILD_ROOT%{_mandir}/man1/*
83
84 mkdir -p $RPM_BUILD_ROOT/etc/profile.d
85 cp buildscripts/out/lilypond-profile $RPM_BUILD_ROOT/etc/profile.d/lilypond.sh
86 cp buildscripts/out/lilypond-login $RPM_BUILD_ROOT/etc/profile.d/lilypond.csh
87
88 make prefix="$RPM_BUILD_ROOT%{_prefix}" install-html-doc
89
90
91 %post
92
93 touch /tmp/.lilypond-install
94 rm `find /var/lib/texmf -name 'feta*pk' -or -name 'feta*tfm' -or -name 'parmesan*pk' -or -name 'parmesan*tfm' -print` /tmp/.lilypond-install
95
96 %if %{info}
97 /sbin/install-info %{_infodir}/lilypond.info.gz %{_infodir}/dir 
98 %endif
99
100 # chkfontpath --add=%{_datadir}/lilypond/@TOPLEVEL_VERSION@/fonts/type1/
101
102 echo 'Please logout first before using LilyPond.'
103
104 %preun
105
106
107 %if %{info}
108 if [ $1 = 0 ]; then
109     /sbin/install-info --delete %{_infodir}/lilypond.info.gz %{_infodir}/dir 
110 fi
111 %endif
112
113 # chkfontpath --remove=%{_datadir}/share/lilypond/@TOPLEVEL_VERSION@/fonts/type1/
114
115
116 %post documentation
117 scrollkeeper-update
118
119 %postun documentation
120 scrollkeeper-update
121
122
123
124 %files
125 %defattr(-, root, root)
126 %{_datadir}/emacs/site-lisp/lilypond*
127 %{_datadir}/emacs/site-lisp/site-start.d/lilypond-*
128
129 %{_bindir}/abc2ly
130 %{_bindir}/as2text
131 %{_bindir}/convert-ly
132 %{_bindir}/etf2ly
133 %{_bindir}/lilypond
134 %{_bindir}/ly2dvi
135 %{_bindir}/midi2ly
136 %{_bindir}/lilypond-book
137 %{_bindir}/mup2ly
138 %{_bindir}/musedata2ly
139 %{_bindir}/pmx2ly
140
141
142
143 %if %{info}
144 %{_infodir}/*
145 %endif
146
147 %{_mandir}/man1/abc2ly.1.gz
148 %{_mandir}/man1/as2text.1.gz
149 %{_mandir}/man1/convert-ly.1.gz
150 %{_mandir}/man1/etf2ly.1.gz
151 %{_mandir}/man1/lilypond.1.gz
152 %{_mandir}/man1/ly2dvi.1.gz
153 %{_mandir}/man1/midi2ly.1.gz
154 %{_mandir}/man1/lilypond-book.1.gz
155 %{_mandir}/man1/musedata2ly.1.gz
156 %{_mandir}/man1/mup2ly.1.gz
157 %{_mandir}/man1/pmx2ly.1.gz
158
159 %{_datadir}/lilypond/@TOPLEVEL_VERSION@/
160 %{_datadir}/locale/*/LC_MESSAGES/lilypond.mo
161
162 %{_libdir}/lilypond/
163
164 /etc/profile.d/lilypond.*
165
166
167 %files documentation
168
169 %defattr(-, root, root)
170
171 %{docdir}/@TOPLEVEL_VERSION@
172 %{_datadir}/omf/lilypond/@TOPLEVEL_VERSION@
173
174