updated on Sat Jan 21 16:18:39 UTC 2012
[aur-mirror.git] / vlc-plugin-rsound-git / PKGBUILD
blobe6046814139450a2689a709522bd4aba632eb90a
1 # Maintainer: Hans-Kristian Arntzen <maister@archlinux.us>
3 pkgname=vlc-plugin-rsound-git
4 pkgver=20110211
5 pkgrel=1
6 pkgdesc="RSound output plugin for VLC"
7 arch=('i686' 'x86_64')
8 url="http://www.rsound.org"
9 license=('GPL')
10 depends=('rsound' 'vlc')
11 makedepends=('git')
13 _gitroot="git://github.com/Themaister/RSound.git"
14 _gitrepo="RSound"
16 build() 
18   cd $srcdir
19   
20   if [ -d $_gitrepo ]; then
21           cd $_gitrepo && git pull && cd $srcdir
22   else
23           git clone $_gitroot $_gitrepo
24   fi
26   cd $_gitrepo/patches/vlc
27   make || return 1
28   make DESTDIR=$pkgdir install || return 1