updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / tivodecode-cvs / PKGBUILD
blob2e73b5e1ffa01dd83e72fadb3307e5656a97c232
1 # Maintainer Matthew Bauer <mjbauer95@gmail.com>
3 pkgname=tivodecode-cvs
4 pkgver=20090927
5 pkgrel=1
6 pkgdesc="Tivo file decoder"
7 url="http://tivodecode.sf.net/"
8 arch=(i686 x86_64)
9 license=('custom')
10 depends=()
11 provides=('tivodecode')
12 conflicts=('tivodecode')
13 makedepends=('cvs')
15 _cvsroot=":pserver:anonymous:@tivodecode.cvs.sourceforge.net:/cvsroot/tivodecode"
16 _cvsmod="tivodecode"
18 build() {
19         cd ${srcdir}
21         msg "Connecting to $_cvsmod.sourceforge.net CVS server...."
22         if [ -d $_cvsmod/CVS ]; then
23                 cd $_cvsmod
24                 cvs -z3 update -d
25         else
26                 cvs -z3 -d $_cvsroot co -D $pkgver -f $_cvsmod
27                 cd $_cvsmod
28         fi
30         msg "CVS checkout done or server timeout"
31         msg "Starting make..."
33         cp -r ../$_cvsmod ../$_cvsmod-build
34         cd ../$_cvsmod-build
36         ./configure --prefix=/usr
37         make || return 1
38         make DESTDIR=$pkgdir install || return 1