core/ffmpegthumbnailer/PKGBUILD

27 lines
622 B
Bash
Raw Normal View History

# Maintainer: abveritas@chakra-project.org
2010-06-07 20:59:24 +08:00
pkgname=ffmpegthumbnailer
2012-08-29 15:31:09 +08:00
pkgver=2.0.8
pkgrel=5
2010-06-07 20:59:24 +08:00
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")
2010-06-07 20:59:24 +08:00
options=(!libtool)
2012-08-29 15:31:09 +08:00
sha1sums=('2c54ca16efd953f46547e22799cfc40bd9c24533')
2010-06-07 20:59:24 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-06-07 20:59:24 +08:00
}