mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 10:34:36 +08:00
63 lines
1.6 KiB
Bash
63 lines
1.6 KiB
Bash
# Maintainer: Francesco Marinucci < franzmari[at]chakra-project[dot]it>
|
|
# contributor Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gst-plugins-good
|
|
pkgver=1.14.1
|
|
pkgrel=1
|
|
pkgdesc="GStreamer Multimedia Framework Good Plugins"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://gstreamer.freedesktop.org/"
|
|
depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 'libiec61883' 'libxdamage' 'v4l-utils' 'cairo' 'libgudev')
|
|
makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python3')
|
|
checkdepends=(gst-plugins-base)
|
|
options=(!emptydirs)
|
|
_commit=f1eed72cc30ae4a2037a9e2d046b2172f7213d42 # tags/1.14.1^0
|
|
source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-good#commit=$_commit"
|
|
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
|
|
sha256sums=('SKIP'
|
|
'SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
|
|
git submodule init
|
|
git config --local submodule.common.url "$srcdir/gst-common"
|
|
git submodule update
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--enable-experimental \
|
|
--with-package-name="GStreamer Good Plugins (Chakra GNU/Linux)" \
|
|
--with-package-origin="https://chakralinux.org/"
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
}
|
|
|
|
#FAIL: elements/rtp-payloading
|
|
check() {
|
|
cd $pkgname
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|