source: zzuf/trunk/build-win32 @ 1802

Last change on this file since 1802 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
Line 
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
6set -x
7set -e
8
9# Clean up our working directory
10SRCDIR="`pwd`"
11DIRNAME="zzuf-win32-`sed -ne 's/^AM_INIT_AUTOMAKE(.*, \(.*\)).*/\1/p' configure.ac`"
12INSTALLDIR="`pwd`/${DIRNAME}"
13BUILDDIR="${INSTALLDIR}/build"
14rm -Rf "${INSTALLDIR}"
15rm -f "${INSTALLDIR}.zip"
16mkdir "${INSTALLDIR}"
17mkdir "${BUILDDIR}"
18
19cd "${BUILDDIR}"
20# Build for win32
21"${SRCDIR}/configure" --host=i586-mingw32msvc --prefix=/ --bindir=/bin --libdir=/lib
22
23make pkglibdir=/lib pkgdatadir=/data bindir=/bin
24
25make install DESTDIR="${INSTALLDIR}" pkglibdir=/lib/ pkgdatadir=/ bindir=/bin/
26rm -Rf "${BUILDDIR}"
27
28# Pack the directory
29cd "${SRCDIR}"
30zip "${DIRNAME}.zip" `find "${DIRNAME}"`
31rm -Rf "${INSTALLDIR}"
32
Note: See TracBrowser for help on using the repository browser.