]> git.donarmstrong.com Git - lilypond.git/blob - cygwin/mknetrel
typos.
[lilypond.git] / cygwin / mknetrel
1 # -*- shell-script -*-
2 # cygwin/mknetrel - LilyPond mknetrel overrides
3
4 # This script should be used to package LilyPond for Cygwin.
5 # It can be used to build LilyPond on Cygwin, but also on GNU/Linux.
6 #
7 # See http://lilypond.org/web/devel/packaging.html for more information,
8 # report bugs to bug-lilypond@gnu.org.
9 #
10 # To build the package, do:
11 cat >/dev/null <<EOC
12
13    cd /
14    cvs -d:pserver:anoncvs@sources.redhat.com:/cvs/cygwin-apps co -d netrel mknetrel
15    wget -P/var/tmp ftp://lilypond.org/pub/LilyPond/v1.9/lilypond-1.9.9.tar.gz
16    mkdir -p /netrel/src && cd /netrel/src
17    rm -rf /netrel/src/lilypond-*
18    tar xzf /var/tmp/lilypond-*
19    mv lilypond-1.9.9 lilypond-1.9.9-1
20    cp lilypond-1.9.9-1/cygwin/mknetrel /netrel/extra/lilypond
21    /netrel/bin/mknetrel -xX lilypond
22
23 EOC
24
25 sub_packages="doc"
26 old_path=$PATH
27
28 patch=$mknetrel_root/patch
29
30 # for cross-compiling LilyPond:
31 if ! iscygwin; then
32     uploads=$here/uploads/$base && mkdir -p $uploads/
33     tarstem=$uploads/$package
34 fi
35
36 # copy and include extra mknetrel stuff
37 extras="doc patch auto cross split"
38 for i in $extras; do
39     f=mknetrel.$i
40     [ -r $extra/$f ] && cp -pv $extra/$f $src/cygwin/$f
41     . $src/cygwin/$f
42 done
43
44
45 needdevoflags () {
46     return 1
47 }
48
49 preconfig () {
50
51     patchsrc 
52     rm -f config.cache
53
54     # for cross-compiling LilyPond, fake a guile-config
55     if ! iscygwin; then
56         cd $build || exit 1
57         GUILE=1.6.4
58         cat > guile-config <<EOF
59 [ "\$1" == "--version" ] && echo "guile-config - Guile version $GUILE"
60 [ "\$1" == "compile" ] && echo "-I$cygwin_root/usr/include"
61 [ "\$1" == "link" ] && echo "-L$cygwin_root/usr/lib -lguile"
62 exit 0
63 EOF
64         chmod 755 guile-config
65         PATH=$(pwd):$PATH
66     fi
67 }
68
69 postconfig () {
70     # cross-compiling: configure for build-host
71     if ! iscygwin; then
72         rm -f config.cache
73         export HOST_CC=gcc
74         export HOST_CXX=g++
75         if [ "$ABI" = "1.3" ]; then
76             HOST_CC=gcc-2.95
77             HOST_CXX=g++-2.95
78             (cd $src && ln -s GNUmakefile.in GNUmakefile)
79         fi
80         (PATH="$old_path" \
81             PATH="$HOME/usr/pkg/guile-1.6/bin:$PATH" \
82             CFLAGS="-O2 -g" \
83             CC=$HOST_CC \
84             CXX=$HOST_CXX \
85             $src/configure --prefix=/usr --enable-config=for-build)
86     fi
87 }
88
89 prebuild () {
90     for i in $sub_packages; do
91         rm -rf $inst-$i
92         mkdir -p $inst-$i || exit 1
93     done
94     
95     # cross-compiling: build for build-host, generate doc
96     if ! iscygwin; then
97         cd $build || exit 1
98
99         PATH=/bin:/usr/bin:$PATH \
100             make conf=for-build all doc web || exit 1
101         
102         mkdir -p mf/out
103         cp -pv mf/out-for-build/* mf/out
104     fi
105
106     # set LDFLAGS to find the python library
107     # EXTRABUILDARGS="LDFLAGS=$cygwin_root/usr/bin/libpython2.3.dll"
108
109     addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.3.dll" ' ' "target=i686-pc-cygwin" ' '
110
111     if iscygwin; then
112         # EXTRABUILDARGS="$EXTRABUILDARGS all doc web"
113         addmakeflags all ' ' doc ' ' web ' '
114     fi
115 }
116
117 preinstall () {
118
119     # set LDFLAGS to find the python library
120     # addmakeflags LDFLAGS="$cygwin_root/usr/bin/libpython2.3.dll" ' ' "target=i686-pc-cygwin"
121 #    if ! iscygwin; then
122 #       EXTRAINSTALLARGS="target=i686-pc-cygwin"
123 #    else
124     if iscygwin; then
125         #EXTRAINSTALLARGS="web-install target=i686-pc-cygwin"
126         addmakeflags webdir="$inst-doc/$packagedocdir" ' ' web-install
127     fi
128 }
129
130 postinstall () {
131     fixdoc
132     
133     mkdir -p $inst-doc/$docprefix
134     cd $build || exit 1
135     
136     if ! iscygwin; then
137         make conf=for-build webdir=$inst-doc/$packagedocdir web-install
138     fi
139
140     ## copy READMEs etc
141
142     cd $src || exit 1
143     install -d -m755 $inst/$packagedocdir
144
145     install -m644  COPYING ChangeLog DEDICATION THANKS VERSION $inst/$packagedocdir
146
147     # txt files reside elsewhere
148     cd $build/Documentation/topdocs/out
149     install -m644 AUTHORS.txt INSTALL.txt NEWS.txt README.txt $inst/$packagedocdir
150
151     ## Cygwin readmes
152     cygwin=cygwin
153     cd $src || exit 1
154     install -d -m755 $inst/$cygdocdir
155     install -m644 $cygwin/changelog $inst/$cygdocdir/changelog.Cygwin
156
157     cd $build || exit 1
158     install -m644 $cygwin/out/README $inst/$packagedocdir/README.Cygwin
159     install -m644 $cygwin/out/README $inst/$cygdocdir/$package.README
160
161     ## copy examples
162     cd $src || exit 1
163     cp -prv input $inst/$packagedocdir
164        cd $inst/$packagedocdir
165        rm -rf $(find -name 'CVS')
166
167     #cd $inst-doc/$packagedocdir &&
168     #ln -s $(find html/Documentation -name '*.ps.gz') .
169 }