]> wimlib.net Git - wimlib/blob - tools/make-windows-release
tools/make-windows-release: configure --without-libcrypto
[wimlib] / tools / make-windows-release
1 #!/bin/bash
2 #
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.
5
6 set -e
7
8 if [ ! -e src/wim.c ]; then
9         echo "This script must be run from the toplevel directory" 1>&2
10         exit 1
11 fi
12
13 if [ $# -ne 1 ]; then
14         echo "Usage: $0 i686|x86_64" 1>&2
15         exit 1
16 fi
17
18 ARCH="$1"
19 shift
20
21 case "$ARCH" in
22 i686|x86_64)
23         ;;
24 *)
25         echo "ERROR: ARCH must be i686 or x86_64" 1>&2
26         exit 1
27         ;;
28 esac
29
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}
37
38 # Prepare third party libraries
39
40 if [ ! -e $SYSROOT ]; then
41         $MAKE -C $WINDEPDIR sysroot_${ARCH}
42 fi
43
44 # Compile wimlib
45
46 if ! grep -q "./configure --host=${ARCH}-w64-mingw32" config.log || \
47         ! grep -q "configure: exit 0" config.log
48 then
49         extra_args=
50         if [ $ARCH = x86_64 ]; then
51                 extra_args="--enable-ssse3-sha1"
52         fi
53         # Note: putting -static-libgcc in CC is a workaround for libtool
54         # stripping it:
55         # http://www.gnu.org/software/libtool/manual/libtool.html#Stripped-link-flags
56         ./configure --host=${ARCH}-w64-mingw32 --disable-static         \
57                 CC="${ARCH}-w64-mingw32-gcc -static-libgcc"             \
58                 CFLAGS="-O2 -Wall"                                      \
59                 CPPFLAGS="-I$SYSROOT/include"                           \
60                 LDFLAGS="-L$SYSROOT/lib"                                \
61                 PKG_CONFIG_PATH="$SYSROOT/lib/pkgconfig"                \
62                 --without-libcrypto                                     \
63                 $extra_args
64         $MAKE clean
65 fi
66 $MAKE
67
68 # Create empty destination directory
69
70 rm -rf $DESTDIR
71 mkdir $DESTDIR
72
73 # Install binaries
74
75 cp .libs/*.{dll,exe} $DESTDIR
76 ${ARCH}-w64-mingw32-strip $DESTDIR/*.{dll,exe}
77
78 # Install text files
79
80 cp NEWS README* COPYING* $DESTDIR
81 cp $WINDEPDIR/COPYING* $DESTDIR
82 (
83         cd $DESTDIR
84         for fil in NEWS README* COPYING*; do
85                 sed < $fil > ${fil}.txt -e 's/$/\r/g'
86                 rm $fil
87         done
88 )
89
90
91 # Install man pages
92
93 mkdir $DESTDIR/doc
94
95 function gen_pdf_from_man_page() {
96         local manbase=$1
97         local pdf=${DESTDIR}/doc/${manbase}.pdf
98
99         echo "Generating $pdf"
100
101         MANPATH="./doc" man -t $manbase | ps2pdf - $pdf
102 }
103
104 for fil in ./doc/man1/wimlib-imagex-*.1; do
105         manbase=`basename $fil`
106         manbase=${manbase%%.1}
107         cmd=$(echo $manbase | sed s/wimlib-imagex-//)
108         if [ $cmd == mount -o $cmd == mountrw -o $cmd == unmount ]; then
109                 continue
110         fi
111
112         gen_pdf_from_man_page $manbase
113
114         sed 's/$/\r/g' > ${DESTDIR}/wim${cmd}.cmd <<- EOF
115                 @echo off
116                 %~dp0\\wimlib-imagex $cmd %*
117         EOF
118         chmod +x ${DESTDIR}/wim${cmd}.cmd
119 done
120
121 gen_pdf_from_man_page wimlib-imagex
122
123 # Generate ZIP file
124
125 rm -f $ZIPFILE
126 (
127         dir=$PWD
128         cd $DESTDIR
129         7z -mx9 a "$dir/$ZIPFILE" .
130 )