# Contributor: Daniele Paolella # Contributor: Ray Rashif pkgname=fst-git pkgver=20120701 pkgrel=1 pkgdesc="FreeST: Standalone wrapper for Windows VST plug-ins" arch=('x86_64') url="http://www.joebutton.co.uk/fst/" license=('GPL') depends=('wine' 'jack2-multilib' 'lib32-libcanberra' 'lib32-mpg123' 'lib32-gtk-engines') makedepends=('git' 'binutils-multilib' 'gcc-multilib' 'libtool-multilib') provides=('fst') conflicts=('fst') install=fst-git.install source=() md5sums=() _gitroot="git://repo.or.cz/fst.git" _gitname="fst" build() { cd "$srcdir" msg "Connecting to GIT server...." if [ -d $_gitname ] ; then (cd $_gitname && git pull origin) msg "The local files are updated." else git clone $_gitroot fi msg "GIT checkout done or server timeout" msg "Starting make..." cd $_gitname msg "Compiling..." make LASH_EXISTS=no || return 1 # executable install -Dm755 fst.exe "$pkgdir/usr/bin/fst" # libraries mkdir -p "$pkgdir/usr/lib/fst" install -m644 *.o "$pkgdir/usr/lib/fst/" install -m755 fst.exe.so "$pkgdir/usr/lib/libfst.so" # header install -Dm644 fst.h "$pkgdir/usr/include/fst.h" }