wok view ffmpegthumbnailer/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents 346b104468cc
children e3f377fbc5f0
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 libgnutls"
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 }