mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-22 00:52:18 +01:00
ORC generates MIPS DSP Module Rev2 code which is not supported by Alpine mips* definitions. Keep pkgrel intact since other architectures are unaffected by this change.
58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=orc
|
|
pkgver=0.4.28
|
|
pkgrel=0
|
|
pkgdesc="The Oil Run-time Compiler"
|
|
url="https://gstreamer.freedesktop.org/modules/orc.html"
|
|
arch="all"
|
|
license="BSD"
|
|
makedepends="linux-headers"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-compiler"
|
|
source="https://gstreamer.freedesktop.org/src/orc/${pkgname}-${pkgver}.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
case "$CARCH" in
|
|
# FIXME: Test exec_opcodes_sys fails on armhf.
|
|
# FIXME: MIPS DSP Module Rev2 is required for tests on mips*.
|
|
arm*|mips*) options="!check";;
|
|
esac
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
dev() {
|
|
default_dev
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/orc-bugreport "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
compiler() {
|
|
pkgdesc="Orc compiler"
|
|
mkdir -p "$subpkgdir"/usr/
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
|
|
}
|
|
|
|
sha512sums="2ae3100e7d0c03eba9a8a10a8924da4d729e1967b63e5dfdf88c4aee907d7ece82c782d74f4cb7e28a366dd74ce5e1ddc6e2b971e5a2f879b0501cc313b93410 orc-0.4.28.tar.xz"
|