Last change
on this file since 1854 was
1702,
checked in by Sam Hocevar, 16 years ago
|
- Added DLL injection to the Win32 port attempt.
|
-
Property svn:executable set to
*
-
Property svn:keywords set to
Id
|
File size:
762 bytes
|
Rev | Line | |
---|
[1701] | 1 | #! /bin/sh |
---|
| 2 | |
---|
| 3 | ## Win32 cross-compilation for zzuf -- Sam Hocevar <sam@zoy.org> |
---|
| 4 | ## $Id: build-win32 1702 2007-01-24 15:06:17Z sam $ |
---|
| 5 | |
---|
| 6 | set -x |
---|
| 7 | set -e |
---|
| 8 | |
---|
| 9 | # Clean up our working directory |
---|
| 10 | SRCDIR="`pwd`" |
---|
| 11 | DIRNAME="zzuf-win32-`sed -ne 's/^AM_INIT_AUTOMAKE(.*, \(.*\)).*/\1/p' configure.ac`" |
---|
| 12 | INSTALLDIR="`pwd`/${DIRNAME}" |
---|
| 13 | BUILDDIR="${INSTALLDIR}/build" |
---|
| 14 | rm -Rf "${INSTALLDIR}" |
---|
| 15 | rm -f "${INSTALLDIR}.zip" |
---|
| 16 | mkdir "${INSTALLDIR}" |
---|
| 17 | mkdir "${BUILDDIR}" |
---|
| 18 | |
---|
| 19 | cd "${BUILDDIR}" |
---|
| 20 | # Build for win32 |
---|
[1702] | 21 | "${SRCDIR}/configure" --host=i586-mingw32msvc --prefix=/ --bindir=/bin --libdir=/lib |
---|
[1701] | 22 | |
---|
| 23 | make pkglibdir=/lib pkgdatadir=/data bindir=/bin |
---|
| 24 | |
---|
| 25 | make install DESTDIR="${INSTALLDIR}" pkglibdir=/lib/ pkgdatadir=/ bindir=/bin/ |
---|
[1702] | 26 | rm -Rf "${BUILDDIR}" |
---|
[1701] | 27 | |
---|
| 28 | # Pack the directory |
---|
[1702] | 29 | cd "${SRCDIR}" |
---|
[1701] | 30 | zip "${DIRNAME}.zip" `find "${DIRNAME}"` |
---|
| 31 | rm -Rf "${INSTALLDIR}" |
---|
| 32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.