opt/gstreamer/Pkgfile

24 lines
680 B
Plaintext
Raw Normal View History

2013-04-04 13:57:33 +02:00
# Description: Gstreamer is a library that allows the construction of graphs of media-handling components.
2017-02-15 12:41:57 +01:00
# URL: https://gstreamer.freedesktop.org/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gobject-introspection libcap
2013-04-04 13:57:33 +02:00
name=gstreamer
2020-10-28 14:27:48 +01:00
version=1.18.1
release=2
2017-02-15 12:41:57 +01:00
source=(https://gstreamer.freedesktop.org/src/$name/$name-$version.tar.xz)
2013-04-04 13:57:33 +02:00
build() {
meson setup build $name-$version \
2013-04-04 13:57:33 +02:00
--prefix=/usr \
--libexecdir=/usr/lib \
-D buildtype=plain \
2019-10-06 09:34:12 +02:00
-D gtk_doc=disabled \
-D nls=disabled \
-D package-name="GStreamer (CRUX Linux)" \
-D package-origin="https://crux.nu/"
2020-11-01 15:47:46 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2013-04-04 13:57:33 +02:00
}