Date: Friday, November 24, 2017 @ 23:46:37 Author: arojas Revision: 268371
Update to 0.99 Modified: pitivi/trunk/PKGBUILD Deleted: pitivi/trunk/ChangeLog -----------+ ChangeLog | 41 ----------------------------------------- PKGBUILD | 22 +++++++++++++--------- 2 files changed, 13 insertions(+), 50 deletions(-) Deleted: ChangeLog =================================================================== --- ChangeLog 2017-11-24 23:34:52 UTC (rev 268370) +++ ChangeLog 2017-11-24 23:46:37 UTC (rev 268371) @@ -1,41 +0,0 @@ -pitivi (0.13.1-2) - - * Update hicolor icon cache. - * Update mime database. - - -- Abhishek Dasgupta <[email protected]> Thu, 23 Jul 2009 11:57:49 +0530 - -pitivi (0.13.1-1) - - * New upstream version. - * Removed: fix-as-problems.diff pitivi.desktop - - -- Abhishek Dasgupta <[email protected]> Wed, 24 Jun 2009 16:01:42 +0530 - -pitivi (0.11.3-1) - - * New upstream version. - * fix-as-problems.diff: Fixed the problem caused by "as" in - pitivi/timeline/timeline.py - - -- Abhishek Dasgupta <[email protected]> Sat, 13 Dec 2008 16:29:24 +0530 - -pitivi (0.11.2-4) - - * Added gnome-icon-theme as dependency. Closes: FS# 12292. - - -- Abhishek Dasgupta <[email protected]> Mon, 01 Dec 2008 23:08:28 +0530 - -pitivi (0.11.2-3) - - * fix-as.diff: Fixed the error - in pitivi/objectfactory.py caused by the line - as = self.audio_info_stream - - -- Abhishek Dasgupta <[email protected]> Sun, 09 Nov 2008 00:34:22 +0530 - -pitivi (0.11.2-2) - - * Added dbus-python as dependency. - - -- Abhishek Dasgupta <[email protected]> Sun, 26 Oct 2008 14:08:06 +0530 Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-11-24 23:34:52 UTC (rev 268370) +++ PKGBUILD 2017-11-24 23:46:37 UTC (rev 268371) @@ -4,7 +4,7 @@ # Contributor: Gabor Nyekhelyi (n0gabor) <[email protected]> pkgname=pitivi -pkgver=0.98.1 +pkgver=0.99 pkgrel=1 pkgdesc="Editor for audio/video projects using the GStreamer framework" arch=('x86_64') @@ -18,17 +18,21 @@ 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/0.98/$pkgname-$pkgver.tar.xz) -sha256sums=('10a8e23600681af5f7aed0412400d48e5b5e0fbfb609658ff2c636010f27f32d') +source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz) +sha256sums=('c9d02fd669801e0de94b5ca06179da6e8a7e1cb666b843fc12df6f0632db8f7c') +prepare() { + cd $pkgname-$pkgver + sed -e '/tests/d' -i meson.build # needs gst-devtools +} + build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr - make + cd $pkgname-$pkgver + meson --prefix=/usr build + ninja -C build } package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install - [ -d "$pkgdir"/usr/lib64 ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib || true + cd $pkgname-$pkgver + DESTDIR="$pkgdir" ninja install -C build }
