blob: 7f1e404229f927e87472c4a72aac5d299fbc54b4 (
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: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: glib-32 gstreamer libcap-32 libgmp-32
5
6 name=gstreamer-32
7 version=1.20.5
8 release=1
9 source=(https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-$version.tar.xz)
10
11 build() {
12 meson setup build gstreamer-$version \
13 --prefix=/usr \
14 --libdir=/usr/lib32 \
15 --libexecdir=/usr/lib32 \
16 -D buildtype=plain \
17 -D nls=disabled \
18 -D introspection=disabled \
19 -D package-name="GStreamer (CRUX Linux)" \
20 -D package-origin="https://crux.nu/"
21
22 meson compile -C build -j ${JOBS:-1}
23 DESTDIR=$PKG ninja -C build install
24
25 rm -r $PKG/usr/{bin,include,share/man,share}
26 }
|