30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=gst-plugins-ugly
|
|
pkgver=1.18.3
|
|
pkgrel=3
|
|
pkgdesc="Multimedia graph framework - ugly plugins"
|
|
url='https://gstreamer.freedesktop.org/'
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL-2.1')
|
|
depends=('gst-plugins-base-libs' 'libdvdread' 'libmpeg2' 'a52dec' 'libsidplay' 'libcdio' 'x264')
|
|
makedepends=('gettext-tiny' 'python' 'meson')
|
|
source=("https://gstreamer.freedesktop.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
sha512sums=('f3af4637911329a910276c01e688b4ac06f658194ba8e2a809e8b058fca49508d940f6396a54944d993d307d2843ef45aadf05e84c9d733f288b1f7a9d0787be')
|
|
|
|
build() {
|
|
hyperbola-meson $pkgname-$pkgver build \
|
|
-D doc=disabled \
|
|
-D gobject-cast-checks=disabled \
|
|
-D amrnb=disabled \
|
|
-D amrwbdec=disabled \
|
|
-D package-name="GStreamer Ugly Plugins (Hyperbola GNU/Linux-libre)" \
|
|
-D package-origin="https://www.hyperbola.info/"
|
|
meson compile -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
install -Dm644 $srcdir/$pkgname-$pkgver/COPYING -t $pkgdir/usr/share/licenses/$pkgname
|
|
}
|