Date: Saturday, January 20, 2018 @ 23:37:18 Author: bgyorgy Revision: 284465
upgpkg: pitivi 0.99-3 Adopt the package, fix dependencies Modified: pitivi/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-01-20 23:35:14 UTC (rev 284464) +++ PKGBUILD 2018-01-20 23:37:18 UTC (rev 284465) @@ -1,37 +1,37 @@ # $Id$ -# Maintainer: Sergej Pupykin <[email protected]> -# Maintainer: Abhishek Dasgupta <[email protected]> +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Sergej Pupykin <[email protected]> +# Contributor: Abhishek Dasgupta <[email protected]> # Contributor: Gabor Nyekhelyi (n0gabor) <[email protected]> pkgname=pitivi pkgver=0.99 -pkgrel=2 +pkgrel=3 pkgdesc="Editor for audio/video projects using the GStreamer framework" arch=('x86_64') -url="http://www.pitivi.org/" +url="http://pitivi.org/" license=('LGPL') -depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python' - 'libnotify' 'python-gobject' 'python-numpy' 'python-cairo' - 'python-matplotlib' 'gst-plugins-bad' 'python-dbus' 'gst-transcoder' 'gsound') -makedepends=('intltool' 'itstool' 'meson') +depends=('gsound' 'gst-editing-services' 'gst-plugins-bad' 'gst-plugins-good' 'gst-python' + 'gst-transcoder' 'gtk3' 'libnotify' 'python-cairo' 'python-gobject' 'python-matplotlib' + 'python-numpy') +makedepends=('gst-devtools' 'intltool' 'itstool' 'meson') optdepends=('frei0r-plugins: additional video effects, clip transformation feature' 'gst-libav: additional multimedia codecs' 'gst-plugins-ugly: additional multimedia codecs') -source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz) +source=(https://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz) sha256sums=('c9d02fd669801e0de94b5ca06179da6e8a7e1cb666b843fc12df6f0632db8f7c') prepare() { - cd $pkgname-$pkgver - sed -e '/tests/d' -i meson.build # needs gst-devtools + mkdir build } build() { - cd $pkgname-$pkgver - meson --prefix=/usr build - ninja -C build + cd build + meson --prefix=/usr --buildtype=release ../$pkgname-$pkgver + ninja } package() { - cd $pkgname-$pkgver - DESTDIR="$pkgdir" ninja install -C build + cd build + DESTDIR="$pkgdir" ninja install }
