blob: 7a8f8f2f8592618ed1e0847e70d81173b16693c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Cree des vignettes de vos fichiers videos
# URL: http://code.google.com/p/ffmpegthumbnailer/
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: ffmpeg, libjpeg, libpng
# Run on: ffmpeg,libjpeg,libpng
name=ffmpegthumbnailer
version=2.0.6
release=1
source=(http://ffmpegthumbnailer.googlecode.com/files/$name-$version.tar.gz\
http://nutyx.meticul.eu/files/patchs/$name/ffmpegthumbnailer-2.0.6-libpng-1.patch)
build() {
cd $name-$version
patch -Np1 -i ../ffmpegthumbnailer-2.0.6-libpng-1.patch
./configure --prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
}
|