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/
|
2023-03-05 13:41:52 +01:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
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
|
2024-01-25 19:51:08 +01:00
|
|
|
version=1.22.9
|
2021-01-08 00:46:42 +11:00
|
|
|
release=1
|
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() {
|
2023-03-05 13:41:52 +01:00
|
|
|
meson setup build $name-$version \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
-D buildtype=plain \
|
|
|
|
-D nls=disabled \
|
|
|
|
-D package-name="GStreamer (CRUX Linux)" \
|
|
|
|
-D package-origin="https://crux.nu/"
|
2016-05-29 19:43:33 +10:00
|
|
|
|
2023-03-05 13:41:52 +01:00
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2013-04-04 22:57:33 +11:00
|
|
|
}
|