wok-next view libwebp/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 7c5d038be95b
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libwebp"
4 VERSION="1.0.2"
5 CATEGORY="graphics"
6 SHORT_DESC="WebP image library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="Apache2"
9 WEB_SITE="https://developers.google.com/speed/webp/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libwebp.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://downloads.webmproject.org/releases/webp/$TARBALL"
14 TARBALL_SHA1="7cdff7beabc073ab0c5ecf888c326722e2f5688e"
16 BUILD_DEPENDS="libpng-dev libjpeg-turbo-dev tiff-dev giflib-dev"
17 SPLIT="webp $PACKAGE $PACKAGE-dev"
19 COPY_webp="bin/"
20 COPY_std="*.so.*"
21 COPY_dev="@dev *.so"
23 CAT_webp="graphics|applications"
24 DEPENDS_webp="$PACKAGE giflib libjpeg-turbo libpng libtiff"
26 compile_rules() {
27 ./configure \
28 --enable-libwebpmux \
29 --enable-libwebpdemux \
30 --enable-libwebpdecoder \
31 --enable-libwebpextras \
32 --enable-swap-16bit-csp \
33 --disable-static \
34 $CONFIGURE_ARGS &&
35 fix libtool &&
36 make &&
37 make install
38 }