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
|
2016-05-29 19:43:33 +10:00
|
|
|
# Depends on: gobject-introspection libcap
|
2013-04-04 22:57:33 +11:00
|
|
|
|
2014-07-27 23:23:15 +10:00
|
|
|
name=gstreamer
|
2020-10-29 00:27:48 +11:00
|
|
|
version=1.18.1
|
2020-11-03 14:26:15 +11:00
|
|
|
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() {
|
2020-11-03 14:26:15 +11:00
|
|
|
meson setup build $name-$version \
|
2013-04-04 22:57:33 +11:00
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib \
|
2020-11-03 14:26:15 +11:00
|
|
|
-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/"
|
2016-05-29 19:43:33 +10:00
|
|
|
|
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
|
|
|
}
|