New package: wineasio-0.9.0.git.

This commit is contained in:
davehome 2012-09-15 15:29:36 -06:00
parent 1fe38eda4e
commit 18e565183d
3 changed files with 65 additions and 0 deletions

23
srcpkgs/wineasio/INSTALL Normal file
View file

@ -0,0 +1,23 @@
#
# This script will advise the user to register the wineasio.dll with WINE
# for their user account.
#
case "${ACTION}" in
pre)
;;
post)
cat << _EOF
=====================================================================
Be sure to run `regsvr32 wineasio.dll' as your user before use!
You may also override the WINEPREFIX environment variable if your
WINE installation is not installed in ~/.wine/
NOTE: The JACK server must be running in order to load the driver
into an application.
=====================================================================
_EOF
;;
esac

38
srcpkgs/wineasio/template Normal file
View file

@ -0,0 +1,38 @@
# Template file for 'wineasio'
pkgname=wineasio
version="0.9.0.git"
revision=1
homepage="http://sourceforge.net/projects/wineasio"
depends="jack"
makedepends="git wine-unstable wine-unstable-devel jack-devel"
short_desc="JACK driver for WINE to provide Windows Apps with ASIO support."
maintainer="davehome <davehome@redthumb.info.tm>"
license="LGPL"
long_desc="
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."
nonfree=yes
only_for_archs=i686
nofetch=yes
noextract=yes
do_fetch()
{
local url="git://wineasio.git.sourceforge.net/gitroot/wineasio/wineasio"
msg_normal " Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
do_build()
{
local url="http://stellarbox.co.cc/asio.h"
msg_normal " Fetching ${url} ...\n"
$XBPS_FETCH_CMD ${url}
make ${makejobs}
}
do_install()
{
vinstall wineasio.dll.so 755 usr/lib/wine
}

View file

@ -0,0 +1,4 @@
libjack.so.0
libwine.so.1
libm.so.6
libc.so.6