updated on Wed Jan 18 16:10:53 UTC 2012
[aur-mirror.git] / libjit / PKGBUILD
blob959baa47d31ce366d40d72aab76e6c52e4cf1290
1 # Contributor: Your Name <youremail@domain.com>
2 pkgname=libjit
3 pkgver=0.1.2
4 pkgrel=1
5 pkgdesc="The libjit library implements just-in-time compilation functionality. Unlike other JITs, this one is designed to be independent of any particular virtual machine bytecode format or language. Currently, libjit is used as the JIT backend for the DotGNU Portable.NET project (in addition to its default CVM backend). However, the hope is that other Free Software projects can use this library rather than spending large amounts of time writing their own JIT from scratch."
6 arch=(i686 x86_64)
7 url="http://freshmeat.net/projects/libjit/"
8 license=('LGPL')
9 groups=()
10 depends=()
11 makedepends=()
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 source=(ftp://ftp.gnu.org/gnu/dotgnu/libjit/$pkgname-$pkgver.tar.gz)
17 md5sums=('9e0c1986da9a03ce68cfb3021bbc6701')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
22   ./configure --prefix=/usr
23   make || return 1
24   make DESTDIR="$pkgdir/" install