diff options
author | James Meyer <james.meyer@operamail.com> | 2010-11-10 23:13:08 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-11-10 23:13:08 (GMT) |
commit | 88c1b84963b442a1d39d8193ce72d17e297f006f (patch) | |
tree | 707179173751bff29a018a403dbed4923db47985 /abs/extra/orc | |
parent | bf347ccc26e6d65950cea72b1990dbf8c9fe98c1 (diff) | |
parent | 7921961814dea89fbf846d06095afd207c8dfd23 (diff) | |
download | linhes_pkgbuild-88c1b84963b442a1d39d8193ce72d17e297f006f.zip linhes_pkgbuild-88c1b84963b442a1d39d8193ce72d17e297f006f.tar.gz linhes_pkgbuild-88c1b84963b442a1d39d8193ce72d17e297f006f.tar.bz2 |
Merge branch 'testing' of ssh://linhes.org/mount/repository/linhes_pkgbuild into testing
Diffstat (limited to 'abs/extra/orc')
-rw-r--r-- | abs/extra/orc/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/extra/orc/PKGBUILD b/abs/extra/orc/PKGBUILD new file mode 100644 index 0000000..659bc47 --- /dev/null +++ b/abs/extra/orc/PKGBUILD @@ -0,0 +1,24 @@ +# $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" +} + |