updated on Mon Jan 16 20:00:43 UTC 2012
[aur-mirror.git] / seam / PKGBUILD
blob17b74495fb2f76b440168e3827c9b671b2c3fcf2
1 # Maintainer: David Trail <napalm10 at g mail dot com>
2 # The seam vm, used with Alice SML
4 pkgname=seam
5 pkgver=1.4
6 pkgrel=1
7 pkgdesc="Simple Extensible Abstract Machine"
8 arch=('i686' 'x86_64')
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')
16 build() {
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}
24   make || return 1
25   make DESTDIR=$pkgdir install || return 1
28 # vim:set ts=2 sw=2 et: