multimedia/hexter: Added to 13.0 repository
This commit is contained in:
parent
e01271417b
commit
70a923d052
|
@ -0,0 +1,10 @@
|
|||
hexter is a software synthesizer that models the sound generation of a Yamaha
|
||||
DX7 synthesizer. It can easily load most DX7 patch bank files, accept patch
|
||||
editing commands via MIDI sys-ex messages (ALSA systems only), and recreate
|
||||
the sound of the DX7 with greater accuracy than any previous open-source
|
||||
emulation (that the author is aware of....).
|
||||
|
||||
hexter operates as a plugin for the Disposable Soft Synth Interface (DSSI);
|
||||
you need a program to host it (e.g. rosegarden).
|
||||
|
||||
This requires dssi and liblo.
|
|
@ -0,0 +1,71 @@
|
|||
#!/bin/sh
|
||||
# Slackware build script for <hexter>
|
||||
# Written by Michales Michaloudes korgie@gmail.com
|
||||
|
||||
PRGNAM=hexter
|
||||
VERSION=0.6.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--build=$ARCH-slackware-linux
|
||||
# --with-gtk-prefix=/usr/lib/gtk-2.0 \
|
||||
# --with-gnu-ld \
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING ChangeLog INSTALL TODO README \
|
||||
$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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="hexter"
|
||||
VERSION="0.6.1"
|
||||
HOMEPAGE="http://dssi.sourceforge.net/hexter.html"
|
||||
DOWNLOAD="http://garr.dl.sourceforge.net/sourceforge/dssi/hexter-0.6.1.tar.gz"
|
||||
MD5SUM="09e9fc778b46b0d6d94a793b433fda2e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Michales Michaloudes"
|
||||
EMAIL="korgie@gmail.com"
|
||||
APPROVED="rworkman"
|
|
@ -0,0 +1,10 @@
|
|||
hexter: hexter is a software synthesizer that models the sound generation of a
|
||||
hexter: Yamaha DX7 synthesizer. It can easily load most DX7 patch bank files,
|
||||
hexter: accept patch editing commands via MIDI sys-ex messages (ALSA systems
|
||||
hexter: only), and recreate the sound of the DX7 with greater accuracy than any
|
||||
hexter: previous open-source emulation (that the author is aware of....)
|
||||
hexter:
|
||||
hexter: hexter operates as a plugin for the Disposable Soft Synth Interface
|
||||
hexter: (DSSI).
|
||||
hexter:
|
||||
hexter:
|
Loading…
Reference in New Issue