updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libfreefare-svn / PKGBUILD
blob5fb1d0645cf0a490ac586c5892c0687d1b662ad6
1 # based on libfreefare PKGBUILD by James Buckley
2 pkgname=libfreefare-svn
3 pkgver=833
4 pkgrel=1
5 pkgdesc="Provides a convenient API for MIFARE card manipulations"
6 arch=('i686' 'x86_64')
7 url="http://code.google.com/p/nfc-tools/"
8 license=('LGPL3')
9 depends=('libnfc>=1.4.0')
10 makedepends=('subversion')
11 conflicts=('libfreefare')
12 provides=('libfreefare')
14 _svntrunk=http://nfc-tools.googlecode.com/svn/trunk/libfreefare
15 _svnmod=libfreefare
17 build() {
18   cd "$srcdir"
20   if [ -d $_svnmod/.svn ]; then
21     (cd $_svnmod && svn up -r $pkgver)
22   else
23     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
24   fi
26   msg "SVN checkout done or server timeout"
27   msg "Starting make..."
29   rm -rf "$srcdir/$_svnmod-build"
30   cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
31   cd "$srcdir/$_svnmod-build"
33   autoreconf -vis
34   ./configure --prefix=/usr
35   make
38 package() {
39   cd "$srcdir/$_svnmod-build"
40   make DESTDIR="$pkgdir/" install