contrib/gst-plugins-good/Pkgfile

27 lines
918 B
Plaintext
Raw Normal View History

2013-04-09 04:51:36 +02:00
# Description: A set of good-quality plugins for gstreamer under the LGPL.
2017-02-15 13:11:13 +01:00
# URL: https://gstreamer.freedesktop.org/modules/gst-plugins-good.html
2023-03-05 13:52:03 +01:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2019-10-06 09:36:12 +02:00
# Depends on: flac gst-plugins-base gtk3 lame libdv libshout libsoup libvpx mpg123 taglib wavpack xorg-libxcomposite xorg-libxcursor xorg-libxinerama
2023-07-21 22:18:47 +02:00
# Optional: dbus icu krb5 qt5 v4l-utils
2016-05-29 12:05:18 +02:00
name=gst-plugins-good
2024-05-29 17:23:27 +02:00
version=1.24.4
2023-11-13 21:20:54 +01:00
release=1
2017-02-15 13:11:13 +01:00
source=(https://gstreamer.freedesktop.org/src/$name/$name-$version.tar.xz)
2013-04-09 04:51:36 +02:00
build() {
2023-07-21 22:18:47 +02:00
prt-get prt-get isinst qt5 && PKGMK_GST_GOOD+=' -D qt5=enabled'
2013-04-09 04:51:36 +02:00
2023-07-21 22:18:47 +02:00
meson setup $name-$version build $PKGMK_GST_GOOD \
2023-03-05 13:52:03 +01:00
--prefix=/usr \
--libexecdir=/usr/lib \
-D buildtype=plain \
-D nls=disabled \
-D package-name="GStreamer (CRUX Linux)" \
2023-07-21 22:18:47 +02:00
-D package-origin="https://crux.nu/" \
-D qt6=disabled
2013-04-09 04:51:36 +02:00
2023-03-05 13:52:03 +01:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2013-04-09 04:51:36 +02:00
}