diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/orc |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/orc')
-rw-r--r-- | extra/orc/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/orc/PKGBUILD b/extra/orc/PKGBUILD new file mode 100644 index 000000000..5e1fc92ce --- /dev/null +++ b/extra/orc/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 98440 2010-11-08 23:53:36Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +pkgname=orc +pkgver=0.4.11 +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=('b8b0b148d319422c3ad250c29483b3c4') + +build () { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --disable-static + make + make DESTDIR=${pkgdir} install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +} |