summaryrefslogtreecommitdiff
path: root/scripts/portable_postbuild.sh
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-04-17 22:13:02 +0200
committerGravatar waker <wakeroid@gmail.com>2011-04-17 22:13:02 +0200
commitaafa6a715ccf53af3dad55ce79de27e1592dcad2 (patch)
tree247c96c3f4df2cc88a7f189539d1d62837bfe86c /scripts/portable_postbuild.sh
parente3ed8ad79f2e4873d448128ea22125958ed9782f (diff)
prepared for building static 0.5-beta1
Diffstat (limited to 'scripts/portable_postbuild.sh')
-rwxr-xr-xscripts/portable_postbuild.sh32
1 files changed, 19 insertions, 13 deletions
diff --git a/scripts/portable_postbuild.sh b/scripts/portable_postbuild.sh
index 41c573dd..51adbec2 100755
--- a/scripts/portable_postbuild.sh
+++ b/scripts/portable_postbuild.sh
@@ -1,7 +1,7 @@
#!/bin/sh
VERSION=`cat PORTABLE_VERSION | perl -ne 'chomp and print'`
OSTYPE=`uname -s`
-OUTDIR=deadbeef-$VERSION-portable
+OUTDIR=portable/deadbeef-$VERSION
PLUGDIR=$OUTDIR/plugins
DOCDIR=$OUTDIR/doc
PIXMAPDIR=$OUTDIR/pixmaps
@@ -9,27 +9,33 @@ mkdir -p $PLUGDIR
mkdir -p $DOCDIR
mkdir -p $PIXMAPDIR
-cp ./deadbeef ./deadbeef-$VERSION-portable/
+cp ./deadbeef $OUTDIR
for i in nullout cdda flac alsa mpgmad hotkeys vtx \
ffap ffmpeg wavpack vorbis oss vfs_curl \
lastfm sid adplug sndfile artwork \
supereq gme dumb notify musepack wildmidi \
- tta dca aac mms shn ao shellexec; do
- if [ -f ./plugins/$i/.libs/$i.so ]; then
+ tta dca aac mms shn ao shellexec vfs_zip \
+ m3u ; do
+ if [ -f ./plugins/$i/.libs/$i.so ]; then
cp ./plugins/$i/.libs/$i.so $PLUGDIR/
else
- echo $i not found
+ echo ./plugins/$i/.libs/$i.so not found
fi
+ if [ -f ./plugins/$i/.libs/$i.fallback.so ]; then
+ cp ./plugins/$i/.libs/$i.fallback.so $PLUGDIR/
+ fi
done
-for i in gtkui gtkui.fallback;do
- if [ -f ./plugins/$i/.libs/$i.so ]; then
- cp ./plugins/$i/.libs/$i.so $PLUGDIR/
- else
- echo $i not found
- fi
-done
+if [ -f ./plugins/gtkui/.libs/ddb_gui_GTK2.so ]; then
+ cp ./plugins/gtkui/.libs/ddb_gui_GTK2.so $PLUGDIR/
+else
+ echo ./plugins/gtkui/.libs/ddb_gui_GTK2.so not found
+fi
+if [ -f ./plugins/gtkui/.libs/ddb_gui_GTK2.fallback.so ]; then
+ cp ./plugins/gtkui/.libs/ddb_gui_GTK2.fallback.so $PLUGDIR/
+fi
+
#pixmaps
@@ -47,6 +53,6 @@ cp ./icons/32x32/deadbeef.png $OUTDIR/
# strip
if [ $OSTYPE != 'Darwin' ];then
- strip --strip-unneeded ./deadbeef-$VERSION-portable/deadbeef
+ strip --strip-unneeded $OUTDIR/deadbeef
for i in $PLUGDIR/*.so ; do strip --strip-unneeded $i ; done
fi