mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
673 B
Bash
25 lines
673 B
Bash
|
# $Id: PKGBUILD 2991 2009-09-25 01:32:51Z giovanni $
|
||
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
||
|
# Contributor: boromil@gmail.com
|
||
|
|
||
|
pkgname=ffmpegthumbnailer
|
||
|
pkgver=1.5.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Lightweight video thumbnailer that can be used by file managers."
|
||
|
url="http://code.google.com/p/ffmpegthumbnailer/"
|
||
|
license=('GPL2')
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('ffmpeg' 'libjpeg>=7')
|
||
|
source=(http://ffmpegthumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz)
|
||
|
options=(!libtool)
|
||
|
md5sums=('c2802698c7b6eb48d03ab66a1e65772d')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|
||
|
|