flmsg/scripts/builddist.sh

26 lines
482 B
Bash
Raw Permalink Normal View History

autoreconf
# build Windows installation file
./configure \
$PKGCFG \
--host=i686-w64-mingw32.static \
--with-ptw32=$PREFIX/i686-w64-mingw32.static \
--enable-static \
2020-09-08 17:24:15 -05:00
PTW32_LIBS="-lpthread -lpcreposix -lpcre" \
FLTK_CONFIG=$PREFIX/bin/i686-w64-mingw32.static-fltk-config
make clean
make -j 4
$PREFIX/bin/i686-w64-mingw32.static-strip src/flmsg.exe
2009-11-27 14:02:49 -06:00
make nsisinst
mv src/*setup*exe .
# build the distribution tarball
2009-11-27 14:02:49 -06:00
./configure
make clean
2009-11-27 14:02:49 -06:00
make distcheck
make clean