updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / gmpc-lyrics-git / PKGBUILD
blob8f99c8d5e11a6928eb51badbf60c29e6bb2fa313
1 #Maintainer: Martin Lee <hellnest.fuah@gmail.com
3 pkgname=gmpc-lyrics-git
4 provides=('gmpc-lyrics')
5 conflicts=('gmpc-lyrics' 'gmpc-lyrics-svn')
6 pkgver=20110124
7 pkgrel=1
8 pkgdesc="A plugin for gmpc that obtains lyrics from a chosen site"
9 url="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_LYRICS"
10 license="GPL"
11 arch=('i686' 'x86_64')
12 depends=('gmpc-git')
13 makedepends=('git' 'intltool' 'gob2' 'pkgconfig')
14 options=('!libtool')
15 source=()
16 md5sums=()
18 _gitroot="git://repo.or.cz/gmpc-lyrics.git"
19 _gitname="gmpc-lyrics"
20 build() {
21         cd $startdir/src
22         msg "Connecting to $_gitroot server..."
24         if [ -d $startdir/src/$_gitname ] ; then
25                 cd $_gitname && git pull origin
26                 msg "The local files are updated."
27         else
28                 git clone $_gitroot
29         fi
31         msg "GIT checkout done or server timeout"
32         msg "Starting make..."
34         cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
35         cd $startdir/src/$_gitname-build
37         ./autogen.sh --prefix=/usr
38         make || return 1
39         make DESTDIR=$startdir/pkg install