[ci] add pip install to readthedocs.yaml
[aubio.git] / scripts / build_apple_frameworks
1 #! /bin/sh
2
3 # cd to aubio directory for consistency
4 cd `dirname $0`/..
5
6 AUBIO_TMPDIR=`mktemp -d /var/tmp/aubio-build-XXXX`
7 PACKAGE=aubio
8 source VERSION
9 VERSION=$AUBIO_MAJOR_VERSION.$AUBIO_MINOR_VERSION.$AUBIO_PATCH_VERSION$AUBIO_VERSION_STATUS
10 LIBVERSION=$LIBAUBIO_LT_CUR.$LIBAUBIO_LT_REV.$LIBAUBIO_LT_AGE
11 OUTPUTDIR=$PWD/dist
12 mkdir -p "$OUTPUTDIR"
13 # add git abbreviated commit hash
14 #VERSION+=+$(git log --pretty=format:"%h" -1)
15
16 CFLAGS="-Werror -Os"
17 WAFCONF="--nodeps --enable-fat" # --disable-memcpy --disable-accelerate"
18
19 export VERSION
20
21 function cleanup () {
22   rm -rf $AUBIO_TMPDIR
23 }
24
25 trap cleanup SIGINT SIGTERM
26
27 function create_tarballs() {
28   # name version platform
29   # create tarball
30   tarfile=$OUTPUTDIR/$1-$2.$3_binary.tar.bz2
31   tar -C $AUBIO_TMPDIR/dist-$3/ -jcf "$tarfile" .
32   #rm -rf $AUBIO_TMPDIR/dist-$3
33 }
34
35 function create_framework() {
36   rm -rf $AUBIO_TMPDIR/framework-$3
37   mkdir -p $AUBIO_TMPDIR/framework-$3/$1-$2.$3_framework/$1.framework
38   cp -pr COPYING README.md $AUBIO_TMPDIR/framework-$3/$1-$2.$3_framework
39   pushd $AUBIO_TMPDIR/framework-$3
40   cp -pr "$OLDPWD/build/src/lib$1.a" $1-$2.$3_framework/$1.framework/$1 || \
41     cp -pr $AUBIO_TMPDIR/dist-$3/usr/local/lib/lib$1.$LIBVERSION.dylib \
42     $AUBIO_TMPDIR/framework-$3/$1-$2.$3_framework/$1.framework/$1
43   cp -pr $AUBIO_TMPDIR/dist-$3/usr/local/include/$1 $1-$2.$3_framework/$1.framework/Headers
44   cp -pr "$OLDPWD/scripts/apple/Modules" $1-$2.$3_framework/$1.framework/
45   popd
46 }
47
48 function create_framework_zip() {
49   # create zip
50   pushd $AUBIO_TMPDIR/framework-$3
51   zipfile=$1-$2.$3_framework.zip
52   zip -qr $zipfile $1-$2.$3_framework
53   popd
54   mv $AUBIO_TMPDIR/framework-$3/$zipfile "$OUTPUTDIR"
55 }
56
57 set -x
58 set -e
59
60 #./waf dist --verbose
61
62 for PLATFORM in darwin ios iosimulator watchos watchsimulator
63 do
64   rm -rf $AUBIO_TMPDIR/dist-$PLATFORM
65   WAF_OPTIONS="--verbose --destdir $AUBIO_TMPDIR/dist-$PLATFORM --with-target-platform $PLATFORM $WAFCONF"
66   for target in distclean configure build install
67   do
68     CFLAGS="$CFLAGS" ./waf $target $WAF_OPTIONS
69   done
70
71   create_framework $PACKAGE $VERSION $PLATFORM
72   if [ $PLATFORM == 'darwin' ]
73   then
74     # on darwin, build a .tar.bz2 of /usr
75     create_tarballs $PACKAGE $VERSION $PLATFORM
76   fi
77
78   # build a .zip of aubio.framework
79   create_framework_zip $PACKAGE $VERSION $PLATFORM
80
81   # clean up
82   ./waf uninstall $WAF_OPTIONS
83
84 done
85
86 ./waf clean
87 ./waf distclean
88
89 cleanup