2016-12-30 09:07:40 -06:00
|
|
|
#!/bin/sh
|
2015-01-08 07:39:30 -06:00
|
|
|
|
2016-12-30 09:07:40 -06:00
|
|
|
### Script to build a win32 installation
|
2015-01-08 07:39:30 -06:00
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
|
$PKGCFG \
|
2021-07-17 11:09:42 -05:00
|
|
|
--host=i686-w64-mingw32.static \
|
2016-07-04 08:23:05 -05:00
|
|
|
--with-ptw32=$PREFIX/i686-w64-mingw32.static \
|
2015-01-08 07:39:30 -06:00
|
|
|
--enable-static \
|
2020-09-08 17:24:15 -05:00
|
|
|
PTW32_LIBS="-lpthread -lpcreposix -lpcre" \
|
2020-04-05 09:27:07 -05:00
|
|
|
FLTK_CONFIG=$PREFIX/bin/i686-w64-mingw32.static-fltk-config
|
2016-12-30 09:07:40 -06:00
|
|
|
|
2021-07-17 11:09:42 -05:00
|
|
|
make clean
|
2020-04-05 09:27:07 -05:00
|
|
|
make -j 4
|
2021-07-17 11:09:42 -05:00
|
|
|
|
2015-08-11 18:18:11 -05:00
|
|
|
$PREFIX/bin/i686-w64-mingw32.static-strip src/flmsg.exe
|
|
|
|
|
|
2015-01-08 07:39:30 -06:00
|
|
|
make nsisinst
|
|
|
|
|
mv src/*setup*exe .
|