mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:57:16 +08:00
31 lines
665 B
Plaintext
31 lines
665 B
Plaintext
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# Contributor: almack
|
|
|
|
pkgname=ffmpegthumbnailer
|
|
pkgver=2.0.9
|
|
pkgrel=1
|
|
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')
|
|
makedepends=('svn')
|
|
source=(svn://http://ffmpegthumbnailer.googlecode.com/svn/trunk#revision=260)
|
|
sha1sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-gio \
|
|
--enable-thumbnailer
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|