summaryrefslogtreecommitdiff
path: root/scripts/portable_extraplugs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/portable_extraplugs.sh')
-rwxr-xr-xscripts/portable_extraplugs.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/portable_extraplugs.sh b/scripts/portable_extraplugs.sh
deleted file mode 100755
index 982ec15d..00000000
--- a/scripts/portable_extraplugs.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-VERSION=`cat PORTABLE_VERSION | perl -ne 'chomp and print'`
-ORIGIN=`pwd | perl -ne 'chomp and print'`
-AP=$HOME/bin/autopackage
-export CC=$AP/apbuild/apgcc
-export CXX=$AP/apbuild/apgcc
-export APBUILD_STATIC_LIBGCC=1
-
-ZLIB_LIBS="$ORIGIN/../deadbeef-deps/lib-x86-32/lib/libz.a"
-CFLAGS="-I$ORIGIN/../deadbeef-deps/lib-x86-32/include"
-
-for i in shn dumb ao ; do
- echo cd
- cd $ORIGIN/plugins/$i
- make clean
- echo making $ORIGIN/plugins/$i
- make -j8 STATIC_CFLAGS="$CFLAGS" CC=$CC CXX=$CXX ZLIB_LIBS=$ZLIB_LIBS
-done
-