mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:37:16 +08:00
26 lines
623 B
Bash
26 lines
623 B
Bash
# Maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=orc
|
|
pkgver=0.4.17
|
|
pkgrel=1
|
|
pkgdesc="The Oild Runtime Compiler"
|
|
arch=('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=('af1bf3dab9e69f3c36f389285e2a12a1')
|
|
|
|
build () {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|