diff options
author | B. Watson <yalhcru@gmail.com> | 2021-12-01 13:09:00 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-10 08:37:32 +0700 |
commit | d96183adb70df76e574ad55f440eca20519a90b6 (patch) | |
tree | 97571a3eecc95c1c6446c575c58e13e6659773ce /audio/bristol/bristol.SlackBuild | |
parent | 2232e8f31abec010ec4e03fcc2a2ab0063218e5e (diff) |
audio/bristol: Fix build, add launcher.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/bristol/bristol.SlackBuild')
-rw-r--r-- | audio/bristol/bristol.SlackBuild | 37 |
1 files changed, 25 insertions, 12 deletions
diff --git a/audio/bristol/bristol.SlackBuild b/audio/bristol/bristol.SlackBuild index 4b3fe30016d0c..aed57ae17468e 100644 --- a/audio/bristol/bristol.SlackBuild +++ b/audio/bristol/bristol.SlackBuild @@ -2,11 +2,17 @@ # Slackware build script for bristol -# Written by Zbigniew Baniewski, <zbigniew.baniewski@gmail.com> +# Written by Zbigniew Baniewski, <email removed> # Modified by B. Watson, yalhcru@gmail.com # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211130 bkw: BUILD=2 +# - fix build on -current (again). +# - new-style icons. +# - get rid of .la files. +# - add launch-bristol script, so desktop users can choose a synth +# instead of only being able to use the B3. # 20170621 bkw: fix build on -current # 20141030 bkw: make VERSION respect environment @@ -14,7 +20,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=bristol VERSION=${VERSION:-0.60.11} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -26,9 +32,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -61,11 +64,8 @@ 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 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ # Patch from Debian to fix alsa-lib API breakage. patch -p1 < $CWD/03-rm_alsa-iatomic.h.patch @@ -76,6 +76,7 @@ sed -i "s,/usr/lib,/usr/lib$LIBDIRSUFFIX,g" \ sed -i "s,/usr/X11R6/lib,/usr/X11R6/lib$LIBDIRSUFFIX,g" \ configure Makefile.* brighton/Makefile.* libbrightonX11/Makefile.* +SLKCFLAGS+=" -fcommon" CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -91,15 +92,27 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-strip DESTDIR=$PKG +install -m0755 -oroot -groot $CWD/launch-bristol $PKG/usr/bin +rm -f $PKG/usr/lib*/*.la + # "install -m0644" rather than "cp -a" so the docs aren't executable! mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION install -m0644 AUTHORS COPYING COPYING.GPL NEWS README ChangeLog \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -# icon rendered from bicon.svg +for px in 16 32 48 64 128; do + size=${px}x${px} + dir=$PKG/usr/share/icons/hicolor/$size/apps + mkdir -p $dir + convert -background none -resize $size bitmaps/bicon.svg $dir/$PRGNAM.png +done + +mkdir -p $PKG/usr/share/icons/hicolor/scalable/apps +cat bitmaps/bicon.svg > $PKG/usr/share/icons/hicolor/scalable/apps/$PRGNAM.svg + mkdir -p $PKG/usr/share/pixmaps -cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png +ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png # .desktop written for this SlackBuild mkdir -p $PKG/usr/share/applications |