core/ffmpegthumbnailer/PKGBUILD

27 lines
622 B
Bash

# Maintainer: abveritas@chakra-project.org
pkgname=ffmpegthumbnailer
pkgver=2.0.8
pkgrel=5
pkgdesc="Lightweight video thumbnailer that can be used by file managers."
url="http://code.google.com/p/ffmpegthumbnailer/"
license=('GPL2')
arch=('x86_64')
depends=('ffmpeg' 'libjpeg-turbo' 'libpng')
source=("http://ffmpegthumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz")
options=(!libtool)
sha1sums=('2c54ca16efd953f46547e22799cfc40bd9c24533')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}