core/orc/PKGBUILD

24 lines
665 B
Bash
Raw Normal View History

# $Id: PKGBUILD 79531 2010-05-04 09:01:27Z ibiru $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=orc
pkgver=0.4.4
pkgrel=1
pkgdesc="The Oild Runtime Compiler"
arch=('i686' 'x86_64')
license=('custom')
url="http://code.entropywave.com/projects/orc/"
depends=('glibc')
options=('!libtool')
source=(http://code.entropywave.com/download/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('35f3b7283f391ab8ade7f94332940414')
build () {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --disable-static || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
}