wok view ethumb/receipt @ rev 15353

mp: remove TRY_DRIVERS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 30 17:09:51 2013 +0000 (2013-09-30)
parents 3c7317814519
children f929509f5e5a
line source
1 # SliTaz package receipt.
3 PACKAGE="ethumb"
4 VERSION="1.7.8"
5 CATEGORY="graphics"
6 SHORT_DESC="EFL Thumbnail generation library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 TAGS="e enlightenment efl"
14 DEPENDS="emotion edbus libexif"
15 BUILD_DEPENDS="emotion-dev edbus-dev libexif-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --libexecdir=/usr/lib/$PACKAGE \
22 --disable-doc \
23 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/lib/ethumb $fs/usr/lib
34 cp -a $install/usr/share $fs/usr
35 }