updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / tiemu-svn / PKGBUILD
blob563bdc9cb09c93e36f9286e05217f3637135cf4f
1 # Contributor: r4 <dru84532 (at) gmail.com>
3 _pkgname=tiemu
4 pkgname=$_pkgname-svn
5 pkgver=2854
6 pkgrel=1
7 pkgdesc="TiEmu emulates Texas Instruments calculators TI-89/92/92+/V200PLT (no GDB)."
8 arch=(i686 x86_64)
9 url="http://tilp.info/"
10 license=('GPL')
11 depends=('libglade' 'libticalcs-svn' 'sdl')
12 makedepends=('subversion')
13 options=('force' '!libtool')
14 provides=(tiemu)
15 conflicts=(tiemu)
17 _svnmod=$_pkgname
18 _svntrunk=http://svn.tilp.info/repos/tiemu/$_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   ./configure --prefix=/usr --disable-gdb
40   make || return 1
41   make DESTDIR="$pkgdir/" install