updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / lyriczilla / PKGBUILD
blob5df166d161be4cc71e08304d1181e138d96b864e
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Your Name <youremail@domain.com>
7 pkgname=lyriczilla
8 pkgver=svn
9 pkgrel=1
10 pkgdesc="LyricZilla is a lyric player under linux"
11 arch=(i686 x86_64)
12 url="http://lyriczilla.googlecode.com"
13 license=('GPL')
14 groups=()
15 depends=()
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=(audacious)
23 install=
24 #source=($pkgname-$pkgver.tar.gz)
25 noextract=()
26 md5sums=() #generate with 'makepkg -g'
28 _svnurl="$url/svn/trunk $pkgname-read-only"
30 build() {
31   cd "$srcdir/"
32   svn checkout $_svnurl
33   cd $pkgname-read-only
35   sed -i 's@$(libdir)/python2.5@$(libdir)/python2.6@g' lyriczilla/Makefile.in lyriczilla/Makefile.am 
36   ./configure --prefix=/usr
37   make || return 1
38   make DESTDIR="$pkgdir/" install
41 # vim:set ts=2 sw=2 et: