view build_mingw32.sh @ 181:06a5ea89982f

build_mingw32.sh: build tarball for mingw32
author Paul Brossier <piem@piem.org>
date Mon, 13 Feb 2017 18:44:07 +0100
parents 5e944736a8ed
children e82f4da325ae
line wrap: on
line source
#! /bin/sh

# cross compile vamp-aubio-plugins using mingw32 toolchain

. $PWD/VERSION
VAMP_AUBIO_VERSION=$VAMP_AUBIO_MAJOR_VERSION.$VAMP_AUBIO_MINOR_VERSION.$VAMP_AUBIO_PATCH_VERSION$VAMP_AUBIO_VERSION_STATUS

set -e
set -x

if [ "$1" = 'dist' ]
then
  rm -rf contrib/
fi

export CFLAGS="-Os"
#export CC="i586-mingw32msvc-gcc"
#export CXX="i586-mingw32msvc-g++"
export CC="i686-w64-mingw32-gcc"
export CXX="i686-w64-mingw32-g++"
export STRIP="i686-w64-mingw32-strip"
export WAFOPTS="--with-target-platform=win32 --disable-sndfile --disable-samplerate --disable-jack --disable-avcodec --notests"

# get waf
./scripts/get_waf.sh

# fetch Vamp SDK
./scripts/get_deps_mingw32.sh

# fetch and build aubio
./scripts/get_aubio.sh

# configure and build plugin
./waf configure

./waf build -v

# system-wide installation
#./waf install --destdir=dist-win

if [ "$1" = 'dist' ]
then
  DESTDIR=vamp-aubio-plugins-$VAMP_AUBIO_VERSION-win32
  rm -rf $DESTDIR $DESTDIR.zip
  mkdir $DESTDIR
  cp -prv contrib/aubio*/README.md $DESTDIR/README.aubio.md
  cp -prv README.md $DESTDIR
  cp -prv build/vamp-aubio.dll $DESTDIR
  $STRIP $DESTDIR/vamp-aubio.dll
  cp -prv vamp-aubio.cat vamp-aubio.n3 $DESTDIR
  zip -r $DESTDIR.zip $DESTDIR
fi