mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 07:04:37 +08:00
26 lines
622 B
Bash
26 lines
622 B
Bash
# Maintainer franzmari@chakra-project.it
|
|
|
|
pkgname=orc
|
|
pkgver=0.4.18
|
|
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=('1a2552e8d127526c48d644fe6437b377')
|
|
|
|
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"
|
|
}
|