mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added extra/gstreamer
This commit is contained in:
parent
994beb6663
commit
052bff15bb
2 changed files with 66 additions and 0 deletions
59
extra/gstreamer/PKGBUILD
Normal file
59
extra/gstreamer/PKGBUILD
Normal file
|
@ -0,0 +1,59 @@
|
|||
# $Id$
|
||||
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich
|
||||
# - remove valgrind makedepend
|
||||
|
||||
pkgname=gstreamer
|
||||
pkgver=1.9.90+8+g6d0d350
|
||||
pkgrel=1
|
||||
pkgdesc="GStreamer Multimedia Framework"
|
||||
url="https://gstreamer.freedesktop.org/"
|
||||
arch=(i686 x86_64)
|
||||
license=(LGPL)
|
||||
depends=(libxml2 glib2 libunwind libcap)
|
||||
makedepends=(intltool pkgconfig gtk-doc gobject-introspection autoconf-archive git)
|
||||
_commit=6d0d350a94ba6b4e7775a8321bd2a29e889cbc21 # master
|
||||
install=gstreamer.install
|
||||
source=("git://anongit.freedesktop.org/gstreamer/gstreamer#commit=$_commit"
|
||||
"gst-common::git://anongit.freedesktop.org/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 --libexecdir=/usr/lib \
|
||||
--with-package-name="GStreamer (Arch Linux)" \
|
||||
--with-package-origin="http://www.archlinux.org/" \
|
||||
--enable-gtk-doc --disable-static
|
||||
|
||||
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
||||
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd $pkgname
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
7
extra/gstreamer/gstreamer.install
Normal file
7
extra/gstreamer/gstreamer.install
Normal file
|
@ -0,0 +1,7 @@
|
|||
post_install() {
|
||||
setcap cap_net_bind_service,cap_net_admin+ep usr/lib/gstreamer-1.0/gst-ptp-helper
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in a new issue