core/ffmpegthumbnailer/PKGBUILD
Samir 348d542db8 libpng group: update/rebuild platform
will commit them separately next time... it's just too much work to do separate commits right now
2013-07-27 16:51:03 +00:00

39 lines
857 B
Bash

# Maintainer: abveritas@chakra-project.org
pkgname=ffmpegthumbnailer
pkgver=2.0.8
pkgrel=6
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"
"ffmpegthumbnailer-2.0.8-memcpy.patch")
options=(!libtool)
sha1sums=('2c54ca16efd953f46547e22799cfc40bd9c24533'
'c23ef173f98c928fcacacd6e6060dab2e56f1239')
prepare() {
cd ${pkgname}-${pkgver}
patch -p0 < "$srcdir"/ffmpegthumbnailer-2.0.8-memcpy.patch
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--enable-gio \
--enable-thumbnailer
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}