X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=make%2Fout%2Flilypond.spec;h=a8e3f0b345a82e92dff5131c2f0cf7f508cad8c5;hb=94189ec2b8da6d7e89dc619c646a927adead9b19;hp=b184c2ffa164cf3947f67ba0a09dfb1c5a0a6f35;hpb=d36e8ced83cfeabcf4ec3840ffe93a717a17ac4d;p=lilypond.git diff --git a/make/out/lilypond.spec b/make/out/lilypond.spec index b184c2ffa1..08f2e52e8b 100644 --- a/make/out/lilypond.spec +++ b/make/out/lilypond.spec @@ -1,85 +1,159 @@ +%define info yes + Name: lilypond -Version: 1.1.38 +Version: 1.3.131 Release: 1 -Copyright: GPL +License: GPL Group: Applications/Publishing -Source0: ftp.cs.uu.nl:/pub/GNU/LilyPond/development/lilypond-1.1.38.tar.gz +Source0: ftp.cs.uu.nl:/pub/GNU/LilyPond/development/lilypond-1.3.131.tar.gz Summary: A program for printing sheet music. URL: http://www.cs.uu.nl/~hanwen/lilypond -Packager: Han-Wen Nienhuys # Icon: lilypond-icon.gif BuildRoot: /tmp/lilypond-install Prereq: tetex -%description +%description +LilyPond is a music typesetter. It produces beautiful +sheet music using a high level description file as input. LilyPond is +part of the GNU Project. + +%package documentation +Summary: Prebuilt website containing all LilyPond documentation. +Group: Applications/Publishing +# BuildArchitectures: noarch + +%description documentation -LilyPond is the GNU Project music typesetter. This program can print -beautiful sheet music from a music definition file. It can also play -mechanical performances to a MIDI file. Features include multiple -staffs, meters, clefs, keys, lyrics, versatile input language, cadenzas, -beams, slurs, triplets, named chords, transposing, formatting scores, -part extraction. It includes a nice font of musical symbols. +The documentation of LilyPond, both in HTML and PostScript. %prep %setup + %build -./configure --disable-checking --disable-debugging --enable-printing --prefix=/usr --disable-optimise --enable-shared + +# + +# DO NOT use % { configure } , it hardcodes all paths, runs libtool, +# so we can't do make prefix=/tmp/ install. + +# In fact, do not take out the spaces between % and { , because RPM will gladly +# do a substitution anyway. + +./configure --disable-checking --disable-debugging --enable-printing --prefix=%{_prefix} --disable-optimise --enable-shared + make all -ln -s /usr/share/texmf/fonts/tfm/public/cm/ tfm -make -C Documentation info || true -make htmldoc || true +# urg +# %build documentation +# line 42: second %build +# ok, now make sure that lilypond package will succeed, +# even if documentation fails to build +make -C Documentation || true +make htmldoc || true %install + + + rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/tmp/lilypond-rpm-doc -mkdir htmldocs -tar -C htmldocs -xzf out/htmldoc.tar.gz -#tar -C $RPM_BUILD_ROOT/tmp/lilypond-rpm-doc -xzf out/htmldoc.tar.gz -strip lily/out/lilypond mi2mu/out/mi2mu -make prefix="$RPM_BUILD_ROOT/usr" install -gzip -9fn $RPM_BUILD_ROOT/usr/info/* || true +strip lily/out/lilypond midi2ly/out/midi2ly +make prefix="$RPM_BUILD_ROOT%{_prefix}" install +%if info=="yes" +gzip -9fn $RPM_BUILD_ROOT%{_prefix}/info/* || true +%endif -mkdir -p $RPM_BUILD_ROOT/etc/profile.d -cp buildscripts/out/lilypond-profile $RPM_BUILD_ROOT/etc/profile.d/lilypond.sh -cp buildscripts/out/lilypond-login $RPM_BUILD_ROOT/etc/profile.d/lilypond.csh + + +gzip -9fn $RPM_BUILD_ROOT%{_prefix}/man/man1/* || true + + + + +mkdir -p $RPM_BUILD_ROOT%{_prefix}/../etc/profile.d +cp buildscripts/out/lilypond-profile $RPM_BUILD_ROOT%{_prefix}/../etc/profile.d/lilypond.sh +cp buildscripts/out/lilypond-login $RPM_BUILD_ROOT%{_prefix}/../etc/profile.d/lilypond.csh + +# urg +#%install documentation +#line 63: second %install +# again, make sure that main package installs even if doco fails +mkdir -p htmldocs/out +tar -C htmldocs -xzf out/htmldoc.tar.gz || true +mkdir -p out/examples/ +tar -cf - input/ | tar -C out/examples/ -xf- || true + +%ifos cygwin +# urg, this symlink doesn't come through on cygwin +# this is the way symlinks work over there, let's fake one +rm -f $RPM_BUILD_ROOT%{_prefix}/share/lilypond/cmtfm +echo '!c:\\texmf\\fonts\\tfm\\public\\cm' > $RPM_BUILD_ROOT%{_prefix}/share/lilypond/cmtfm +%{fix_suffixes} +%endif %post touch /tmp/.lilypond-install rm `find /var/lib/texmf -name 'feta*pk -print' -or -name 'feta*tfm -print'` /tmp/.lilypond-install -/sbin/install-info /usr/info/lilypond.info.gz /usr/info/dir || true +%if info=="yes" +/sbin/install-info %{_prefix}/info/lilypond.info.gz %{_prefix}/info/dir || true +%endif %preun +%if info=="yes" if [ $1 = 0 ]; then - /sbin/install-info --delete /usr/info/lilypond.info.gz /usr/info/dir || true + /sbin/install-info --delete %{_prefix}/info/lilypond.info.gz %{_prefix}/info/dir || true fi +%endif %files -%doc htmldocs/ - # hairy to hook it in (possibly non-existing) emacs -%doc mudela-mode.el - +%doc lilypond-mode.el +%doc lilypond-font-lock.el + +%ifnos cygwin +%{_prefix}/bin/abc2ly +%{_prefix}/bin/as2text +%{_prefix}/bin/convert-ly +%{_prefix}/bin/etf2ly +%{_prefix}/bin/lilypond +%{_prefix}/bin/ly2dvi +%{_prefix}/bin/midi2ly +%{_prefix}/bin/lilypond-book +%{_prefix}/bin/musedata2ly +%{_prefix}/bin/pmx2ly +%else +%{_prefix}/bin +%endif + +%if info=="yes" +%{_prefix}/info/lilypond.info.gz +%{_prefix}/info/lilypond-internals.info.gz +%endif + +%{_prefix}/man/man1/abc2ly.1.gz +%{_prefix}/man/man1/as2text.1.gz +%{_prefix}/man/man1/convert-ly.1.gz +%{_prefix}/man/man1/etf2ly.1.gz +%{_prefix}/man/man1/lilypond.1.gz +%{_prefix}/man/man1/ly2dvi.1.gz +%{_prefix}/man/man1/midi2ly.1.gz +%{_prefix}/man/man1/lilypond-book.1.gz +%{_prefix}/man/man1/musedata2ly.1.gz +%{_prefix}/man/man1/pmx2ly.1.gz + +%{_prefix}/share/lilypond/ +%{_prefix}/share/locale/*/LC_MESSAGES/lilypond.mo +# urg? +%{_prefix}/../etc/profile.d/lilypond.* + +%files documentation # this gets too messy... # %doc input/*.ly # verbatim include of input: list the directory without issuing a %dir - -/usr/bin/convert-mudela -/usr/bin/mudela-book -/usr/bin/ly2dvi -/usr/bin/lilypond -/usr/bin/mi2mu -/usr/info/* -/usr/man/man1/mi2mu.1 -/usr/man/man1/lilypond.1 -/usr/man/man1/mudela-book.1 -/usr/man/man1/ly2dvi.1 -/usr/man/man1/convert-mudela.1 -/usr/share/lilypond/ -/usr/share/locale/*/LC_MESSAGES/lilypond.mo -/etc/profile.d/lilypond.* - +%doc htmldocs/ +%doc out/examples/ +%doc mutopia/