virt-viewer/prepare-release.sh

80 lines
1.8 KiB
Bash
Raw Normal View History

2007-07-20 23:26:08 +04:00
#!/bin/sh
set -e
set -v
test -n "$1" && RESULTS=$1 || RESULTS=results.log
INSTALL_ROOT=$HOME/builder
# Make things clean.
test -f Makefile && make -k distclean || :
2007-07-20 23:26:08 +04:00
rm -rf build
mkdir build
cd build
../autogen.sh --prefix=$INSTALL_ROOT \
--enable-compile-warnings=error
2007-07-20 23:26:08 +04:00
make
make install
# set -o pipefail is a bashism; this use of exec is the POSIX alternative
exec 3>&1
st=$(
exec 4>&1 >&3
{ make syntax-check 2>&1 3>&- 4>&-; echo $? >&4; } | tee "$RESULTS"
)
exec 3>&-
test "$st" = 0
2007-07-20 23:26:08 +04:00
rm -f *.tar.gz
make dist
2007-07-20 23:26:08 +04:00
if [ -f /usr/bin/rpmbuild ]; then
rpmbuild \
2008-11-28 15:24:56 +03:00
--define "_sourcedir `pwd`" \
-ba --clean virt-viewer.spec
fi
if [ -x /usr/bin/i686-w64-mingw32-gcc ]; then
2008-11-28 15:24:56 +03:00
make distclean
PKG_CONFIG_LIBDIR="/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig:/usr/i686-w64-mingw32/sys-root/mingw/share/pkgconfig" \
PKG_CONFIG_PATH="$INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig" \
CC="i686-w64-mingw32-gcc" \
2008-11-28 15:24:56 +03:00
../configure \
--build=$(uname -m)-w64-linux \
--host=i686-w64-mingw32 \
--prefix="$INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw"
2008-11-28 15:24:56 +03:00
make
make install
fi
if [ -x /usr/bin/x86_64-w64-mingw32-gcc ]; then
make distclean
PKG_CONFIG_LIBDIR="/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig:/usr/x86_64-w64-mingw32/sys-root/mingw/share/pkgconfig" \
PKG_CONFIG_PATH="$INSTALL_ROOT/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig" \
CC="x86_64-w64-mingw32-gcc" \
../configure \
--build=$(uname -m)-w64-linux \
--host=x86_64-w64-mingw32 \
--prefix="$INSTALL_ROOT/x86_64-w64-mingw32/sys-root/mingw"
make
make install
fi
2008-11-28 15:24:56 +03:00
if test -x /usr/bin/i686-w64-mingw32-gcc && test -x /usr/bin/x86_64-w64-mingw32-gcc ; then
2008-11-28 15:24:56 +03:00
if [ -f /usr/bin/rpmbuild ]; then
rpmbuild \
2008-11-28 15:24:56 +03:00
--define "_sourcedir `pwd`" \
-ba --clean mingw-virt-viewer.spec
2008-11-28 15:24:56 +03:00
fi
2007-07-20 23:26:08 +04:00
fi