X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id E0007DC0E46 for ; Tue, 5 May 2015 00:26:47 +0000 (UTC) Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id A75F9DC012F for ; Tue, 5 May 2015 00:26:41 +0000 (UTC) Received: from [81.4.121.188] (port=56900 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.85) (envelope-from ) id 1YpQh2-000G2w-To; Tue, 05 May 2015 01:26:37 +0100 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-aports] [PATCH 1/3] testing/ffmpegthumbnailer: update to 2.0.10 Date: Tue, 5 May 2015 00:26:26 +0000 Message-Id: <1430785588-65737-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.4.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-From-Rewrite: unmodified, already matched X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/ffmpegthumbnailer/APKBUILD | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/testing/ffmpegthumbnailer/APKBUILD b/testing/ffmpegthumbnailer/APKBUILD index 6eaca54..c8f7168 100644 --- a/testing/ffmpegthumbnailer/APKBUILD +++ b/testing/ffmpegthumbnailer/APKBUILD @@ -1,16 +1,15 @@ # Contributor: Stuart Cardall # Maintainer: Stuart Cardall pkgname=ffmpegthumbnailer -pkgver=2.0.9 +pkgver=2.0.10 pkgrel=0 pkgdesc="Lightweight video thumbnailer that can be used by file managers" -url="https://code.google.com/p/ffmpegthumbnailer" +url="https://github.com/dirkvdb/ffmpegthumbnailer" arch="all" license="GPLv2" -depends_dev="" -makedepends="$depends_dev ffmpeg-dev libpng-dev" +makedepends="$depends_dev ffmpeg-dev libpng-dev libjpeg-turbo-dev cmake" subpackages="$pkgname-dev $pkgname-doc" -source="saveas-https://github.com/itoffshore/$pkgname/archive/$pkgver.tar.gz/${pkgname}-${pkgver}.tar.gz" +source="$pkgname-$pkgver.tar.bz2::https://github.com/dirkvdb/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2" _builddir="$srcdir"/$pkgname-$pkgver prepare() { @@ -25,15 +24,7 @@ prepare() { build() { cd "$_builddir" - ./configure \ - --build=$CBUILD \ - --host=$CHOST \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --localstatedir=/var \ - || return 1 + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -DENABLE_GIO=ON -DENABLE_THUMBNAILER=ON . || return 1 make || return 1 } @@ -41,8 +32,9 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 rm -f "$pkgdir"/usr/lib/*.la + mv "$pkgdir"/usr/man "$pkgdir"/usr/share/ } -md5sums="fd5a096a51d0d6d00d15baa6027e8932 ffmpegthumbnailer-2.0.9.tar.gz" -sha256sums="f5d4ef034c98d1279c01b811460f0f6394f5f3ee5afe4c674ea14f3196b87348 ffmpegthumbnailer-2.0.9.tar.gz" -sha512sums="fdfb42b30cf980592a7d4b617f9983d265553ed9217151920953901830d816a04eca5f3c6c776697fab67953095600a2d1e0b690c337a200dad8966b0f82df09 ffmpegthumbnailer-2.0.9.tar.gz" +md5sums="3918d43b9d76c6e3eaf17e1c0c7dd5bc ffmpegthumbnailer-2.0.10.tar.bz2" +sha256sums="a3022c86aa3e704849e424147bd4a319867e18930d66a4a4c93c0baefdd1fc60 ffmpegthumbnailer-2.0.10.tar.bz2" +sha512sums="1fcfcfe9457a3e3e70a749f3234f79d080fbbb40d4d1f65b84e1c46a7051c75368afaffb25a39b43f8e205ffdbc2e156e6fb5848514fce4a1a3f5222458c1b9d ffmpegthumbnailer-2.0.10.tar.bz2" -- 2.4.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---