wok view ffmpegthumbnailer/receipt @ rev 19224

Add bsc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 21 15:47:21 2016 +0200 (2016-06-21)
parents 7a526dcd4932
children da9376ad2691
line source
1 # SliTaz package receipt.
3 PACKAGE="ffmpegthumbnailer"
4 VERSION="2.0.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="Lightweight video thumbnailer that can be used by file managers"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://code.google.com/p/ffmpegthumbnailer/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://ffmpegthumbnailer.googlecode.com/files/$TARBALL"
13 DEPENDS="ffmpeg gcc-lib-base libjpeg libpng"
14 BUILD_DEPENDS="ffmpeg-dev libpng-dev jpeg-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --enable-png \
21 --enable-jpeg \
22 --enable-gio \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share/thumbnailers
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $stuff/* $fs/usr/share/thumbnailers
35 }