22 lines
511 B
Plaintext
22 lines
511 B
Plaintext
# Description: The Oil Runtime Compiler.
|
|
# URL: https://gstreamer.freedesktop.org/projects/orc.html
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
name=orc
|
|
version=0.4.34
|
|
release=1
|
|
source=(http://gstreamer.freedesktop.org/src/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup $name-$version build \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true \
|
|
-D gtk_doc=disabled
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
}
|