opt/gstreamer/Pkgfile

24 lines
680 B
Plaintext
Raw Normal View History

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