Last change
on this file since f9dbc99 was
875ad42,
checked in by Jelmer Vernooij <jelmer@…>, at 2006-05-27T15:02:22Z
|
Install glib, gettext and iconv in temporary directory
|
-
Property mode set to
100755
|
File size:
823 bytes
|
Rev | Line | |
---|
[1705ec3] | 1 | #!/bin/sh |
---|
| 2 | # Simple cross compilation script for BitlBee using mingw32 |
---|
| 3 | # (C) Jelmer Vernooij <jelmer@samba.org> 2005-2006 |
---|
| 4 | |
---|
| 5 | GTK_SITE=ftp://ftp.gtk.org/pub/gtk/v2.8/win32 |
---|
| 6 | |
---|
| 7 | GLIB_VERSION=2.10.1 |
---|
| 8 | LIBICONV_VERSION=1.9.1 |
---|
[84eddee] | 9 | GETTEXT_VERSION=0.14.5 |
---|
[1705ec3] | 10 | |
---|
| 11 | wget -c $GTK_SITE/glib-dev-$GLIB_VERSION.zip |
---|
| 12 | wget -c $GTK_SITE/dependencies/libiconv-$LIBICONV_VERSION.bin.woe32.zip |
---|
[84eddee] | 13 | wget -c $GTK_SITE/dependencies/gettext-dev-$GETTEXT_VERSION.zip |
---|
[1705ec3] | 14 | |
---|
[875ad42] | 15 | DEPSDIR=`mktemp -d` |
---|
[1705ec3] | 16 | |
---|
| 17 | unzip -d $DEPSDIR -o libiconv-$LIBICONV_VERSION.bin.woe32.zip |
---|
| 18 | unzip -d $DEPSDIR -o glib-dev-$GLIB_VERSION.zip |
---|
[84eddee] | 19 | unzip -d $DEPSDIR -o gettext-dev-$GETTEXT_VERSION.zip |
---|
[1705ec3] | 20 | |
---|
[84eddee] | 21 | LD=i586-mingw32msvc-ld CC=i586-mingw32msvc-gcc STRIP=i586-mingw32msvc-strip PKG_CONFIG_PATH="$DEPSDIR/lib/pkgconfig" PKG_CONFIG="pkg-config --define-variable=prefix=\"$DEPSDIR\"" ./configure --ssl=sspi --arch=Windows |
---|
Note: See
TracBrowser
for help on using the repository browser.