Fixed searching the start of word
[midnight-commander.git] / build-glib2.sh
bloba550629252e231cddfff2048896c60a93d1d1279
1 #! /bin/sh
3 # Download and build glib 2.x statically with all dependencies and then
4 # compile GNU Midnight Commander against it.
5 # Copyright (C) 2003 Pavel Roskin
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with this program; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 # This script is incomplete! It doesn't download libiconv. This is OK
23 # for glibc-based systems, but probably not for others. This limitation
24 # is known. Please don't report it.
27 : ${MC_TOPDIR=`pwd`}
28 : ${WORK_TOPDIR=$MC_TOPDIR/build_glib2}
29 : ${TMP_INSTDIR=$WORK_TOPDIR/tmp-inst}
30 : ${GLIB_VERSION=2.21.0}
31 : ${PKGC_VERSION=0.23}
32 : ${GETTEXT_VERSION=0.17}
34 GLIB_DIR="glib-$GLIB_VERSION"
35 GLIB_TARBALL="glib-$GLIB_VERSION.tar.gz"
36 GLIB_URL="ftp://ftp.gtk.org/pub/glib/2.21/$GLIB_TARBALL"
38 PKGC_DIR="pkg-config-$PKGC_VERSION"
39 PKGC_TARBALL="pkg-config-$PKGC_VERSION.tar.gz"
40 PKGC_URL="http://pkgconfig.freedesktop.org/releases/$PKGC_TARBALL"
42 GETTEXT_DIR="gettext-$GETTEXT_VERSION/gettext-runtime"
43 GETTEXT_TARBALL="gettext-$GETTEXT_VERSION.tar.gz"
44 GETTEXT_URL="ftp://ftp.gnu.org/gnu/gettext/$GETTEXT_TARBALL"
46 get_file() {
47 curl --remote-name "$1" || \
48 wget --passive-ftp "$1" || \
49 wget "$1" || \
50 ftp "$1" </dev/null || \
51 exit 1
53 if test ! -d $WORK_TOPDIR; then
54 mkdir -p $WORK_TOPDIR
57 if test -f $MC_TOPDIR/src/dir.c; then : ; else
58 echo "Not in the top-level directory of GNU Midnight Commander." 2>&1
59 exit 1
62 if test -f $MC_TOPDIR/configure; then : ; else
63 $MC_TOPDIR/autogen.sh --help >/dev/null || exit 1
66 rm -rf "$TMP_INSTDIR"
67 PATH="$TMP_INSTDIR/bin:$PATH"
68 export PATH
70 # Compile gettext
71 cd "$WORK_TOPDIR"
72 if gzip -vt "$GETTEXT_TARBALL"; then : ; else
73 get_file "$GETTEXT_URL"
76 rm -rf "$GETTEXT_DIR"
77 gzip -cd "$GETTEXT_TARBALL" | tar xf -
78 cd "$GETTEXT_DIR"
79 if test -f src/gettext.c; then : ; else
80 echo "gettext source is incomplete" 2>&1
81 exit 1
84 ./configure --disable-shared --disable-nls --prefix="$TMP_INSTDIR" || exit 1
85 make all || exit 1
86 make install || exit 1
88 # Compile pkgconfig
89 cd "$WORK_TOPDIR"
90 if gzip -vt "$PKGC_TARBALL"; then : ; else
91 get_file "$PKGC_URL"
94 rm -rf "$PKGC_DIR"
95 gzip -cd "$PKGC_TARBALL" | tar xf -
96 cd "$PKGC_DIR"
97 if test -f pkg.c; then : ; else
98 echo "pkgconfig source is incomplete" 2>&1
99 exit 1
102 ./configure --disable-shared --prefix="$TMP_INSTDIR" || exit 1
103 make all || exit 1
104 make install || exit 1
106 # Compile glib
107 cd "$WORK_TOPDIR"
108 if gzip -vt "$GLIB_TARBALL"; then : ; else
109 get_file "$GLIB_URL" || exit 1
112 rm -rf "$GLIB_DIR"
113 gzip -cd "$GLIB_TARBALL" | tar xf -
114 cd "$GLIB_DIR"
115 if test -f glib/glist.c; then : ; else
116 echo "glib source is incomplete" 2>&1
117 exit 1
120 ./configure --disable-shared --prefix="$TMP_INSTDIR" \
121 PKG_CONFIG="$TMP_INSTDIR/bin/pkg-config" \
122 CPPFLAGS="-I$TMP_INSTDIR/include" \
123 LDFLAGS="-L$TMP_INSTDIR/lib" || exit 1
124 make all || exit 1
125 make install || exit 1
127 cd "$MC_TOPDIR"
128 ./configure PKG_CONFIG="$TMP_INSTDIR/bin/pkg-config" $@ || exit 1
129 make clean || exit 1
130 make || exit 1
132 echo "GNU Midnight Commander has been successfully compiled"