updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libtifiles-svn / PKGBUILD
blobf9e42bd14e0025f6fc8a62427279e723b861e61f
1 # Contributor: Jon Sturm <Jasturm002@aol.com>
2 _pkgname=libtifiles
3 pkgname=$_pkgname-svn
4 pkgver=4340
5 pkgrel=1
6 pkgdesc="TI File format library"
7 arch=(i686 x86_64)
8 url="http://tilp.info/"
9 license=('GPL')
10 depends=('zlib' 'glib2' 'libticonv' )
11 makedepends=('subversion')
12 provides=('libtifiles' 'libtifiles2')
13 conflicts=('libtifiles' 'libtifiles2')
14 options=('force' '!libtool')
15 #md5sums=() #generate with 'makepkg -g'
17 _svnmod=$_pkgname
18 _svntrunk=http://svn.tilp.info/repos/tilp/$_svnmod/trunk
20 build() {
21   cd "$srcdir"
23   if [ -d $_svnmod/.svn ]; then
24     (cd $_svnmod && svn up -r $pkgver)
25   else
26     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
27   fi
29   msg "SVN checkout done or server timeout"
30   msg "Starting make..."
32   rm -rf "$srcdir/$_svnmod-build"
33   cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
34   cd "$srcdir/$_svnmod-build"
36   #
37   # BUILD
38   #
39   autoreconf -i -f
40   ./configure --prefix=/usr
41   make || return 1
42   make DESTDIR="$pkgdir/" install