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