1 # Contributor: totoloco <totoloco at gmail dot com>
6 pkgdesc="Practical Music Search is a highly configurable ncurses-based MPD client written in C++."
7 url="http://pms.sourceforge.net"
10 depends=('ncurses' 'glib2')
16 _gitroot="git://$_gitname.git.sourceforge.net/gitroot/$_gitname/$_gitname"
20 msg "Connecting to GIT server..."
21 if [[ -d $_gitname ]]; then
22 (cd $_gitname && git pull origin)
24 git clone $_gitroot $_gitname
26 msg "GIT checkout done or server timeout"
27 msg "Starting make..."
29 rm -Rf $_gitname-build
30 cp -R $_gitname $_gitname-build
34 ./configure --prefix=/usr || return 1
36 make DESTDIR=${pkgdir} install || return 1