summaryrefslogtreecommitdiff
path: root/scripts/portable_build.sh
blob: 89f2d1ca43ce46e18386f586c56d34f74eca4117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
VERSION=`cat PORTABLE_VERSION | perl -ne 'chomp and print'`
ORIGIN=`pwd | perl -ne 'chomp and print'`
AP=$ORIGIN/tools/apbuild
export CC=$AP/apgcc
export CXX=$AP/apgcc 

export APBUILD_STATIC_LIBGCC=1

./autogen.sh

./configure --enable-staticlink=yes --enable-portable=yes --disable-artwork-imlib2
sed -i 's/-lstdc++ -lm -lgcc_s -lc -lgcc_s/-lm -lc/g' libtool
make clean
make -j9

#./scripts/portable_extraplugs.sh

cd $ORIGIN

echo "building pluginfo tool..."
cd tools/pluginfo
make
cd ../../

./scripts/portable_postbuild.sh