blob: 6494a69e81348e9aa66c59e3919972cb96f4017f (
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.18.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 gtk_doc=disabled \
17 -D nls=disabled \
18 -D package-name="GStreamer (CRUX Linux)" \
19 -D package-origin="https://crux.nu/"
20
21 meson compile -C build -j ${JOBS:-1}
22 DESTDIR=$PKG meson install -C build
23 }
|