diff options
Diffstat (limited to 'audio/zynaddsubfx/zynaddsubfx.SlackBuild')
-rw-r--r-- | audio/zynaddsubfx/zynaddsubfx.SlackBuild | 70 |
1 files changed, 40 insertions, 30 deletions
diff --git a/audio/zynaddsubfx/zynaddsubfx.SlackBuild b/audio/zynaddsubfx/zynaddsubfx.SlackBuild index be23e7d468..3338595ed7 100644 --- a/audio/zynaddsubfx/zynaddsubfx.SlackBuild +++ b/audio/zynaddsubfx/zynaddsubfx.SlackBuild @@ -7,12 +7,10 @@ # Modified by SlackBuilds.org PRGNAM=zynaddsubfx -VERSION=${VERSION:-2.4.1} +VERSION=${VERSION:-2.5.2} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -SRCNAM=ZynAddSubFX - if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; @@ -45,48 +43,60 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 -cd $SRCNAM-$VERSION +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# This fixes a asciidoc problem. -sed -i s/___________/===========/ doc/zynaddsubfx.txt - -cd src - make -j1 \ - LINUX_AUDIOOUT=JACK \ - LINUX_USE_LASH=YES - - mkdir -p $PKG/usr/bin - install -m 755 zynaddsubfx $PKG/usr/bin/ -cd - + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DDefaultOutput=jack \ + -DDefaultInput=jack \ + -DGuiModule=fltk \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +cd .. -# Build the documentation -cd doc +( cd ExternalPrograms/Spliter make -cd - + cp -a spliter $PKG/usr/bin +) -# Install the pre-made patches and examples in the $PKG directory -mkdir -p $PKG/usr/share/ZynAddSubFX -cp -a banks $PKG/usr/share/ZynAddSubFX/ -cp -a examples $PKG/usr/share/ZynAddSubFX/ +( cd ExternalPrograms/Controller + sed -i "s|Box\.h|Box\.H|" ControllerUI.fl + make + cp -a controller $PKG/usr/bin +) find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +( cd doc + make man xhtml +) + +mkdir -p $PKG/usr/man/man1 +gzip -9 < doc/zynaddsubfx.1 > $PKG/usr/man/man1/zynaddsubfx.1.gz + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING ChangeLog *.txt doc/images doc/zynaddsubfx.html \ +cp -a \ + COPYING ChangeLog *.txt doc/images doc/zynaddsubfx.html \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |