core/ffmpegthumbnailer/PKGBUILD

30 lines
683 B
Bash
Raw Normal View History

2010-06-07 20:59:24 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
2010-06-07 20:59:24 +08:00
#
# 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
2012-08-29 21:41:07 +08:00
pkgrel=2
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=('i686' 'x86_64')
depends=('ffmpeg' 'libjpeg' 'libpng')
2010-06-07 20:59:24 +08:00
source=(http://ffmpegthumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz)
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
}