1 # Contributor: Dieter Plaetinck <dieter@plaetinck.be>
6 pkgdesc="Playdar is a music content resolver service - run it on every computer you use, and you'll be able to listen to all the songs you would otherwise be able to find manually by searching though all your computers, hard disks, online services, and more"
7 url="http://www.playdar.org/"
9 depends=('boost' 'taglib' 'sqlite3')
12 md5sums=(8dfbd134886bd27937169f41218257cf)
14 _gitroot="git://github.com/RJ/playdar.git"
17 msg "Connecting to GIT server..."
18 if [[ -d $srcdir/$pkgname-$pkgver ]]; then
19 cd $srcdir/$pkgname-$pkgver && git pull origin || return 1
21 git clone $_gitroot $srcdir/$pkgname-$pkgver || return 1
22 cd $srcdir/$pkgname-$pkgver
25 msg "GIT checkout done or server timeout"
28 git apply ../../cstdio.patch || return 1
32 make DESTDIR="$pkgdir/" install
35 # vim:set ts=2 sw=2 et: