From 1b163a974eb17efb43cf81d39e8d049119219ea7 Mon Sep 17 00:00:00 2001 From: Paul Wisehart Date: Tue, 11 May 2010 15:00:24 +0200 Subject: multimedia/amSynth: Initial import --- multimedia/amSynth/README | 14 +++++++ multimedia/amSynth/amSynth.SlackBuild | 73 +++++++++++++++++++++++++++++++++++ multimedia/amSynth/amSynth.info | 8 ++++ multimedia/amSynth/slack-desc | 8 ++++ 4 files changed, 103 insertions(+) create mode 100644 multimedia/amSynth/README create mode 100644 multimedia/amSynth/amSynth.SlackBuild create mode 100644 multimedia/amSynth/amSynth.info create mode 100644 multimedia/amSynth/slack-desc diff --git a/multimedia/amSynth/README b/multimedia/amSynth/README new file mode 100644 index 0000000000..cf0187cb7c --- /dev/null +++ b/multimedia/amSynth/README @@ -0,0 +1,14 @@ +amSynth stands for Analogue Modeling SYNTHesizer. + +It provides virtual analogue synthesis in the style of the classic +Moog Minimoog/Roland Junos. It offers an easy-to-use interface and +synth engine, while still creating varied sounds. + +This package requires gtkmm, which is available from SlackBuilds.org. +An optional requirement is libsndfile, which is also available at + SlackBuilds.org. + +Note: If you want to use this package with jack, then jack + needs to be installed when you build this package. + The configure step will include jack if its available. + diff --git a/multimedia/amSynth/amSynth.SlackBuild b/multimedia/amSynth/amSynth.SlackBuild new file mode 100644 index 0000000000..29adb142f2 --- /dev/null +++ b/multimedia/amSynth/amSynth.SlackBuild @@ -0,0 +1,73 @@ +#!/bin/sh + +# Slackware build script for amSynth + +# Copyright (C) 2006 paul wisehart wise@lupulin.net +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Modified by the SlackBuilds.org project + +PKGNAME=amSynth +VERSION=1.2.0 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PKGNAME +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PKGNAME-$VERSION +tar -xvzf $CWD/$PKGNAME-$VERSION.tar.gz || exit 1 +cd $PKGNAME-$VERSION || exit 1 +chown -R root:root . +chmod -R a-s,u+rw,go+r-w . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-static=no \ + || exit 1 + +make || exit 1 +make install-strip DESTDIR=$PKG || exit 1 + +mkdir -p $PKG/usr/doc/$PKGNAME-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README \ + $PKG/usr/doc/$PKGNAME-$VERSION +cat $CWD/$PKGNAME.SlackBuild > $PKG/usr/doc/$PKGNAME-$VERSION/$PKGNAME.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PKGNAME-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/multimedia/amSynth/amSynth.info b/multimedia/amSynth/amSynth.info new file mode 100644 index 0000000000..9e70ae06ac --- /dev/null +++ b/multimedia/amSynth/amSynth.info @@ -0,0 +1,8 @@ +PRGNAM="amSynth" +VERSION="1.2.0" +HOMEPAGE="http://amsynthe.sourceforge.net/amSynth/" +DOWNLOAD="http://dl.sourceforge.net/amsynthe/amSynth-1.2.0.tar.gz" +MD5SUM="2ba9a0560945c6ac914a15bb243146e2" +MAINTAINER="paul wisehart" +EMAIL="wise@lupulin.net" +APPROVED="robw810" diff --git a/multimedia/amSynth/slack-desc b/multimedia/amSynth/slack-desc new file mode 100644 index 0000000000..6ca44608e1 --- /dev/null +++ b/multimedia/amSynth/slack-desc @@ -0,0 +1,8 @@ +amSynth: amSynth - Analogue Modeling SYNTHesizer. +amSynth: +amSynth: AMSynth provides virtual analogue synthesis in the style of the +amSynth: classic Moog Minimoog/Roland Junos. It offers an easy-to-use +amSynth: interface and synth engine, while still creating varied sounds. +amSynth: +amSynth: +amSynth: -- cgit v1.2.3