wok view libwebp/receipt @ rev 18129

marco, mate-desktop: update deps
author Yuri Pourre <yuripourre@gmail.com>
date Thu Jun 11 13:50:11 2015 -0300 (2015-06-11)
parents e1141f224d98
children 46fc8daa3b41
line source
1 # SliTaz package receipt.
3 PACKAGE="libwebp"
4 VERSION="0.4.2"
5 CATEGORY="x-window"
6 SHORT_DESC="WebP image library."
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://webmproject.org"
10 WGET_URL="http://downloads.webmproject.org/releases/webp/$TARBALL"
11 HOST_ARCH="i486 arm"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --disable-static \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }