mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:37:15 +08:00
24 lines
665 B
Bash
24 lines
665 B
Bash
|
# $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
|
||
|
}
|