audio/hydrogen: Updated for version 0.9.7.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Woodfall 2018-03-07 11:51:33 +00:00 committed by Willy Sudiarto Raharjo
parent 4c4b185126
commit 629eed54eb
3 changed files with 21 additions and 18 deletions

View File

@ -6,15 +6,15 @@ programming.
Optional dependencies:
* JACK
* JACKSESSION
* CoreAudio
* CoreMidi
* PortAudio
* PortMidi
* PulseAudio
* LASH
* LIBLRDF
* RUBBERBAND
* jack
* JACKSESSION (not available at SBo)
* CoreAudio (not available at SBo)
* CoreMidi (not available at SBo)
* portaudio
* portmidi
* pulseaudio (included in Slackware)
* lash
* liblrdf
* rubberband
These will be found automatically.

View File

@ -1,7 +1,7 @@
#!/bin/sh
# Slackware build script for hydrogen
# Copyright 2013 Dave Woodfall <dave@dawoodfall.net>
# Copyright 2013 David Woodfall <dave@dawoodfall.net>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -22,13 +22,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=hydrogen
VERSION=${VERSION:-0.9.6.1}
VERSION=${VERSION:-0.9.7}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -39,8 +39,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -89,6 +89,9 @@ cd ..
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/share/icons/hicolor/scalable/categories
cp data/img/gray/h2-icon.svg \
$PKG/usr/share/icons/hicolor/scalable/categories

View File

@ -1,8 +1,8 @@
PRGNAM="hydrogen"
VERSION="0.9.6.1"
VERSION="0.9.7"
HOMEPAGE="http://www.hydrogen-music.org/"
DOWNLOAD="https://github.com/hydrogen-music/hydrogen/archive/0.9.6.1.tar.gz"
MD5SUM="527a44eec22fd31f55e6b3cf1089613d"
DOWNLOAD="https://github.com/hydrogen-music/hydrogen/archive/0.9.7.tar.gz"
MD5SUM="569e5749e1c3f45cde09d13ba6738696"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="ladspa_sdk"