contrib/gst-plugins-good/Pkgfile

26 lines
798 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
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
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
2018-04-01 06:45:16 +02:00
# Optional: qt5 icu krb5 v4l-utils dbus
2016-05-29 12:05:18 +02:00
name=gst-plugins-good
2023-01-26 19:35:23 +01:00
version=1.22.0
2023-02-11 21:11:59 +01:00
release=2
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() {
cd $name-$version
2013-04-09 04:51:36 +02:00
2019-10-06 09:36:12 +02:00
meson build \
2013-04-09 04:51:36 +02:00
--prefix=/usr \
2019-10-06 09:36:12 +02:00
--libexecdir=/usr/lib \
2021-01-07 14:47:18 +01:00
-D buildtype=plain \
2019-10-06 09:36:12 +02:00
-D nls=disabled \
-D package-name="GStreamer (CRUX Linux)" \
-D package-origin="https://crux.nu/"
2013-04-09 04:51:36 +02:00
2019-10-06 09:36:12 +02:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2013-04-09 04:51:36 +02:00
}