updated on Sat Jan 21 16:18:39 UTC 2012
[aur-mirror.git] / rsound-git / PKGBUILD
blob35856dfb5cf4b1d3493fb6cf2803b2e3dd7fe339
1 #Contributor <Themaister> <maister@archlinux.us>
3 pkgname=rsound-git
4 pkgver=20100821
5 pkgrel=1
6 pkgdesc="Simple solution for streaming PCM data from client to server in real time."
8 url="http://github.com/Themaister/RSound"
9 arch=('i686' 'x86_64')
11 license=('GPL')
12 depends=()
13 makedepends=(git)
14 provides=(rsound)
15 conflicts=(rsound)
17 source=()
18 _gitroot="git://github.com/Themaister/RSound.git"
19 _gitname="RSound"
21 build() 
23         cd $srcdir
24         msg "Connecting to the GIT server ..."
26         git clone $_gitroot
28         msg "Git checkout done."
29         cd $_gitname
30         
31         ./configure --prefix=/usr       || return 1
32         make || return 1
35 package()
37         cd $srcdir/$_gitname
38    mkdir -p $pkgdir/usr/share/man/man1
39         make DESTDIR=${pkgdir} install || return 1