mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
c833295a39
Update the build to support new external-libs layout, and autoconf options to specify windows word size. Split make_windows_releases into multiple scripts.
25 lines
468 B
Bash
Executable File
25 lines
468 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -d external-libs ]; then
|
|
echo "Please extract qpdf-external-libs-bin.zip and try again"
|
|
exit 2
|
|
fi
|
|
|
|
set -e
|
|
set -x
|
|
cwd=`pwd`
|
|
PATH=$cwd/libqpdf/build:$PATH
|
|
|
|
cd install-mingw32
|
|
v=`ls -d qpdf-*`
|
|
cd ..
|
|
|
|
for i in mingw32 mingw64 msvc32 msvc64; do
|
|
cp -p README-windows-install.txt install-$i/$v/README.txt
|
|
(cd install-$i; zip -r ../$v-bin-$i.zip $v)
|
|
done
|
|
|
|
set +x
|
|
|
|
echo ""
|
|
echo "$v-bin-mingw{32,64}.zip and $v-bin-msvc{32,64}.zip have been created."
|