2014-09-19 19:02:59 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop valgrind makedepend
|
|
|
|
|
|
|
|
pkgname=orc
|
2014-12-21 16:26:57 +00:00
|
|
|
pkgver=0.4.23
|
|
|
|
pkgrel=1
|
2014-09-19 19:02:59 +00:00
|
|
|
pkgdesc="The Oild Runtime Compiler"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('custom')
|
|
|
|
url="http://code.entropywave.com/projects/orc/"
|
|
|
|
depends=('glibc')
|
2014-11-29 18:04:11 +00:00
|
|
|
source=(http://gstreamer.freedesktop.org/data/src/orc/orc-${pkgver}.tar.xz)
|
2014-12-21 16:26:57 +00:00
|
|
|
md5sums=('72e0612ace54d77aa2f7a006348ee81a')
|
2014-09-19 19:02:59 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make check
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
}
|