mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:47:15 +08:00
39 lines
921 B
Bash
39 lines
921 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# Contributor: abveritas@chakra-project.org
|
|
|
|
pkgname=ffmpegthumbnailer
|
|
pkgver=2.0.8
|
|
pkgrel=8
|
|
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
|
|
}
|