blob: abafa5804ba95022c238339d17c6d9dd2429308c (
plain)
1 # Description: Gstreamer is a library that allows the construction of graphs of media-handling components.
2 # URL: https://gstreamer.freedesktop.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: gobject-introspection libcap
5
6 name=gstreamer
7 version=1.20.5
8 release=1
9 source=(https://gstreamer.freedesktop.org/src/$name/$name-$version.tar.xz)
10
11 build() {
12 meson setup build $name-$version \
13 --prefix=/usr \
14 --libexecdir=/usr/lib \
15 -D buildtype=plain \
16 -D nls=disabled \
17 -D package-name="GStreamer (CRUX Linux)" \
18 -D package-origin="https://crux.nu/"
19
20 meson compile -C build -j ${JOBS:-1}
21 DESTDIR=$PKG meson install -C build
22 }
|