2010-06-07 20:59:24 +08:00
|
|
|
#
|
2012-05-20 06:02:02 +08:00
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
2010-06-07 20:59:24 +08:00
|
|
|
#
|
2012-05-20 06:02:02 +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')
|
2011-11-09 12:49:21 +08:00
|
|
|
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
|
2011-11-09 12:49:21 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2010-06-07 20:59:24 +08:00
|
|
|
}
|
|
|
|
|