wok annotate libwebp/receipt @ rev 19208
linld/tobzimage: add elks support (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jun 12 16:37:08 2016 +0200 (2016-06-12) |
parents | c13658501c85 |
children | f9f336b079da |
rev | line source |
---|---|
devl547@17582 | 1 # SliTaz package receipt. |
devl547@17582 | 2 |
devl547@17582 | 3 PACKAGE="libwebp" |
devl547@17582 | 4 VERSION="0.4.2" |
devl547@17582 | 5 CATEGORY="x-window" |
devl547@17582 | 6 SHORT_DESC="WebP image library." |
pascal@17957 | 7 MAINTAINER="devl547@gmail.com" |
pascal@18334 | 8 LICENSE="BSD" |
devl547@17582 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
devl547@17582 | 10 WEB_SITE="http://webmproject.org" |
devl547@17582 | 11 WGET_URL="http://downloads.webmproject.org/releases/webp/$TARBALL" |
devl547@17582 | 12 HOST_ARCH="i486 arm" |
devl547@17582 | 13 |
devl547@17582 | 14 DEPENDS="" |
devl547@17582 | 15 BUILD_DEPENDS="" |
devl547@17582 | 16 |
devl547@17582 | 17 # Rules to configure and make the package. |
devl547@17582 | 18 compile_rules() |
devl547@17582 | 19 { |
devl547@17582 | 20 cd $src |
devl547@17582 | 21 ./configure --disable-static \ |
devl547@17582 | 22 $CONFIGURE_ARGS && |
devl547@17582 | 23 make && |
devl547@17582 | 24 make DESTDIR=$DESTDIR install |
devl547@17582 | 25 } |
devl547@17582 | 26 |
devl547@17582 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@17582 | 28 genpkg_rules() |
devl547@17582 | 29 { |
devl547@17582 | 30 mkdir -p $fs/usr/lib |
devl547@17582 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
devl547@17582 | 32 } |