diff options
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 |