updated on Wed Jan 18 20:10:41 UTC 2012
[aur-mirror.git] / fst-git / PKGBUILD
blob5bf5b28cd48152364f615b82b9b498bc20d0f1d8
1 # Maintainer: Ray Rashif <schivmeister@gmail.com>
3 pkgname=fst-git
4 pkgver=20091102
5 pkgrel=1
6 pkgdesc="FreeST: Standalone wrapper for Windows VST plug-ins"
7 arch=(i686)
8 url="http://www.joebutton.co.uk/fst/"
9 license=('GPL')
10 depends=('lash' 'wine')
11 makedepends=('git')
12 provides=('fst')
13 conflicts=('fst')
14 install=fst-git.install
15 source=()
16 md5sums=()
18 _gitroot="git://repo.or.cz/fst.git"
19 _gitname="fst"
21 build() {
22   cd "$srcdir"
23   msg "Connecting to GIT server...."
25   if [ -d $_gitname ] ; then
26     (cd $_gitname && git pull origin)
27     msg "The local files are updated."
28   else
29     git clone $_gitroot
30   fi
32   msg "GIT checkout done or server timeout"
33   msg "Starting make..."
35   cd $_gitname
36   msg "Compiling..."
37   make || return 1
39   # executable
40   install -Dm755 fst.exe "$pkgdir/usr/bin/fst"
42   # libraries
43   mkdir -p "$pkgdir/usr/lib/fst"
44   install -m644 *.o "$pkgdir/usr/lib/fst/"
45   install -m755 fst.exe.so "$pkgdir/usr/lib/libfst.so"
47   # header
48   install -Dm644 fst.h "$pkgdir/usr/include/fst.h"