diff options
author | waker <wakeroid@gmail.com> | 2012-03-20 20:52:29 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2012-03-20 20:52:29 +0100 |
commit | 6d8f99ce8f827e95c09bfb33251fe210ce0c2c39 (patch) | |
tree | 4c320a0161509d12289d3eb1ad99ae572fff5ce9 /scripts | |
parent | 010c5663fca158493ce9174407002d2fe665e2f5 (diff) |
0.5.2-rc2 fixes
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/portable_build.sh | 2 | ||||
-rwxr-xr-x | scripts/portable_package_static.sh | 8 | ||||
-rwxr-xr-x | scripts/portable_postbuild.sh | 9 |
3 files changed, 12 insertions, 7 deletions
diff --git a/scripts/portable_build.sh b/scripts/portable_build.sh index 36f2665e..6a047023 100755 --- a/scripts/portable_build.sh +++ b/scripts/portable_build.sh @@ -13,7 +13,7 @@ sed -i 's/-lstdc++ -lm -lgcc_s -lc -lgcc_s/-lm -lc/g' libtool make clean make -j9 -./scripts/portable_extraplugs.sh +#./scripts/portable_extraplugs.sh cd $ORIGIN diff --git a/scripts/portable_package_static.sh b/scripts/portable_package_static.sh index be8c75b6..2b8e5465 100755 --- a/scripts/portable_package_static.sh +++ b/scripts/portable_package_static.sh @@ -49,11 +49,11 @@ tar jcvf ../portable_out/build/deadbeef-$VERSION-static-i686.tar.bz2\ $PLUGDIR/vtx.so\ $PLUGDIR/wavpack.so\ $PLUGDIR/wildmidi.so\ - $PLUGDIR/ao.so\ - $PLUGDIR/shn.so\ - $PLUGDIR/dumb.so\ + $PLUGDIR/ddb_ao.so\ + $PLUGDIR/ddb_shn.so\ + $PLUGDIR/ddb_dumb.so\ $PLUGDIR/converter.so\ - $PLUGDIR/converter_gtkui.so\ + $PLUGDIR/converter_gtk2.so\ $PLUGDIR/convpresets\ $PLUGDIR/pulse.so\ $PLUGDIR/dsp_libsrc.so\ diff --git a/scripts/portable_postbuild.sh b/scripts/portable_postbuild.sh index ae9b7ec1..f572240f 100755 --- a/scripts/portable_postbuild.sh +++ b/scripts/portable_postbuild.sh @@ -24,12 +24,17 @@ for i in nullout cdda flac alsa mpgmad hotkeys vtx \ cp ./plugins/$i/.libs/$i.so $PLUGDIR/ elif [ -f ./plugins/$i/$i.so ]; then cp ./plugins/$i/$i.so $PLUGDIR/ + elif [ -f ./plugins/$i/.libs/ddb_$i.so ]; then + cp ./plugins/$i/.libs/ddb_$i.so $PLUGDIR/ else echo ./plugins/$i/.libs/$i.so not found fi - if [ -f ./plugins/$i/.libs/${i}_gtkui.so ]; then - cp ./plugins/$i/.libs/${i}_gtkui.so $PLUGDIR/ + if [ -f ./plugins/$i/.libs/${i}_gtk2.so ]; then + cp ./plugins/$i/.libs/${i}_gtk2.so $PLUGDIR/ + fi + if [ -f ./plugins/$i/.libs/${i}_gtk3.so ]; then + cp ./plugins/$i/.libs/${i}_gtk3.so $PLUGDIR/ fi if [ -f ./plugins/$i/.libs/$i.fallback.so ]; then |