1 # Maintainer: David Trail <napalm10 at g mail dot com>
2 # The seam vm, used with Alice SML
7 pkgdesc="Simple Extensible Abstract Machine"
9 url="http://www.ps.uni-saarland.de/seam/"
10 license=('custom') # http://www.ps.uni-saarland.de/alice/download/COPYING
11 depends=('gcc-libs' 'zlib' 'sh')
12 source=("http://www.ps.uni-saarland.de/alice/download/sources/seam-$pkgver.tar.gz");
14 md5sums=('0149b40811d9ce845e9a5da1586d0d1a')
17 cd "$srcdir/$pkgname-$pkgver"
18 ./configure --prefix=/usr --disable-lightning
20 # get rid of type conversion errors.
21 sed -e s/u_int/u_long/g -i ./store/*.{cc,hh}
22 sed -e s/u_int/u_long/g -i ./*.{cc,hh}
25 make DESTDIR=$pkgdir install || return 1
28 # vim:set ts=2 sw=2 et: