3 # This script prepares a Windows binary distribution of wimlib on Linux using
4 # MinGW-w64. The desired architecture must be passed as the first argument.
8 if [ ! -e src/wim.c ]; then
9 echo "This script must be run from the toplevel directory" 1>&2
14 echo "Usage: $0 i686|x86_64 [EXTRA_CONFIGURE_ARG]..." 1>&2
25 echo "ERROR: ARCH must be i686 or x86_64" 1>&2
30 VERSION=$(grep 'AC_INIT' configure.ac | \
31 grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+[^]]*')
32 DESTDIR=wimlib-${VERSION}-windows-${ARCH}-bin
33 ZIPFILE=wimlib-${VERSION}-windows-${ARCH}-bin.zip
34 MAKE="make -j $(grep -c processor /proc/cpuinfo)"
35 WINDEPDIR=./tools/windeps
36 SYSROOT=$WINDEPDIR/sysroot_${ARCH}
38 # Prepare third party libraries
40 if [ ! -e $SYSROOT ]; then
41 $MAKE -C $WINDEPDIR sysroot_${ARCH}
46 if ! grep -q "./configure --host=${ARCH}-w64-mingw32" config.log || \
47 ! grep -q "configure: exit 0" config.log || \
51 if [ $ARCH = x86_64 ]; then
52 extra_args="--enable-ssse3-sha1"
54 # Note: putting -static-libgcc in CC is a workaround for libtool
56 # http://www.gnu.org/software/libtool/manual/libtool.html#Stripped-link-flags
57 ./configure --host=${ARCH}-w64-mingw32 --disable-static \
58 CC="${ARCH}-w64-mingw32-gcc -static-libgcc" \
59 CPPFLAGS="-I$SYSROOT/include" \
60 LDFLAGS="-L$SYSROOT/lib" \
61 PKG_CONFIG_PATH="$SYSROOT/lib/pkgconfig" \
68 # Create empty destination directory
75 cp .libs/*.{dll,exe} $DESTDIR
76 ${ARCH}-w64-mingw32-strip $DESTDIR/*.{dll,exe}
80 cp NEWS README* COPYING* $DESTDIR
81 cp $WINDEPDIR/COPYING* $DESTDIR
83 sed -n '/^#/q; s/^[\/\* ]*//; p' src/divsufsort.c > $DESTDIR/COPYING.libdivsufsort-lite
84 if ! grep -q 'Copyright' $DESTDIR/COPYING.libdivsufsort-lite; then
85 echo "ERROR: failed to extract libdivsufsort-lite license text" 1>&2
90 for fil in NEWS README* COPYING*; do
91 sed < $fil > ${fil}.txt -e 's/$/\r/g'
101 function gen_pdf_from_man_page() {
103 local pdf=${DESTDIR}/doc/${manbase}.pdf
105 echo "Generating $pdf"
107 MANPATH="./doc" man -t $manbase | ps2pdf - $pdf
110 for fil in ./doc/man1/wimlib-imagex-*.1; do
111 manbase=`basename $fil`
112 manbase=${manbase%%.1}
113 cmd=$(echo $manbase | sed s/wimlib-imagex-//)
114 if [ $cmd == mount -o $cmd == mountrw -o $cmd == unmount ]; then
118 gen_pdf_from_man_page $manbase
120 sed 's/$/\r/g' > ${DESTDIR}/wim${cmd}.cmd <<- EOF
122 "%~dp0\\wimlib-imagex" $cmd %*
124 chmod +x ${DESTDIR}/wim${cmd}.cmd
127 gen_pdf_from_man_page wimlib-imagex
135 7z -mx9 a "$dir/$ZIPFILE" .