diff options
author | B. Watson <yalhcru@gmail.com> | 2011-10-31 18:45:08 -0500 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-11-04 22:02:25 -0200 |
commit | 8c31de10d80af774bc5d7674ee58e336f3de5127 (patch) | |
tree | d05aeb9a4f8715a19070d66666aca1ee0f5d2694 /audio/wineasio | |
parent | b843c43a2f9a3e9dabdbbc00fb91c945dcaeb335 (diff) | |
download | slackbuilds-8c31de10d80af774bc5d7674ee58e336f3de5127.tar.gz |
audio/wineasio: Added (an ASIO to JACK driver for WINE)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'audio/wineasio')
-rw-r--r-- | audio/wineasio/README | 18 | ||||
-rw-r--r-- | audio/wineasio/slack-desc | 19 | ||||
-rw-r--r-- | audio/wineasio/wineasio.SlackBuild | 77 | ||||
-rw-r--r-- | audio/wineasio/wineasio.info | 10 |
4 files changed, 124 insertions, 0 deletions
diff --git a/audio/wineasio/README b/audio/wineasio/README new file mode 100644 index 0000000000..af0802f030 --- /dev/null +++ b/audio/wineasio/README @@ -0,0 +1,18 @@ +WineASIO provides an ASIO to JACK driver for WINE. ASIO is the most common +Windows low-latency driver, so is commonly used in audio workstation +programs. + +This requires wine and jack-audio-connection-kit. + +To build the package, you will need the file "asio.h" from the Steinberg +ASIO SDK, version 2.1 or greater. This file must be downloaded from +http://www.steinberg.net/en/company/developer.html and copied to the +directory containing the SlackBuild. + +After installing the package, each user who will use wineasio must run +the command "regsvr32 wineasio.dll". This must be done as the user(s), +not as root. This only needs to be done once per user. + +This can't be built on a stock Slackware64 system, since it requires +32-bit Wine. It may (or may not) be possible to build on a 64-bit multilib +system; let me know how it goes. diff --git a/audio/wineasio/slack-desc b/audio/wineasio/slack-desc new file mode 100644 index 0000000000..5a3d41c0f1 --- /dev/null +++ b/audio/wineasio/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +wineasio: wineasio (an ASIO to JACK driver for WINE) +wineasio: +wineasio: WineASIO provides an ASIO to JACK driver for WINE. ASIO is the most +wineasio: common Windows low-latency driver, so is commonly used in audio +wineasio: workstation programs. +wineasio: +wineasio: +wineasio: +wineasio: +wineasio: +wineasio: diff --git a/audio/wineasio/wineasio.SlackBuild b/audio/wineasio/wineasio.SlackBuild new file mode 100644 index 0000000000..e1b19e8070 --- /dev/null +++ b/audio/wineasio/wineasio.SlackBuild @@ -0,0 +1,77 @@ +#!/bin/sh + +# Slackware build script for wineasio + +# Written by B. Watson (yalhcru@gmail.com) + +PRGNAM=wineasio +VERSION=${VERSION:-0.9.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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="" +elif [ "$ARCH" = "x86_64" ]; then + # WARNING: presence of this block of code does not imply the + # existence of x86_64 support. Caveat scriptor. + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -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 {} \; + +if [ -e "$CWD/asio.h" ]; then + cp "$CWD/asio.h" . +else + echo "To build this package, get asio.h from the Steinberg ASIO SDK" 1>&2 + exit 1 +fi + +make CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" +mkdir -p $PKG/usr/lib/wine +cp wineasio.dll.so $PKG/usr/lib/wine + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + COPYING.LIB 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} diff --git a/audio/wineasio/wineasio.info b/audio/wineasio/wineasio.info new file mode 100644 index 0000000000..2fc2f26990 --- /dev/null +++ b/audio/wineasio/wineasio.info @@ -0,0 +1,10 @@ +PRGNAM="wineasio" +VERSION="0.9.0" +HOMEPAGE="http://sourceforge.net/projects/wineasio/" +DOWNLOAD="http://sourceforge.net/projects/wineasio/files/wineasio-0.9.0.tar.gz" +DOWNLOAD_x86_64="UNSUPPORTED" +MD5SUM="5090cf27699a0b5aecb72fd06aaf6d01" +MD5SUM_x86_64="" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" +APPROVED="Erik Hanson" |