wok-next annotate 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
rev   line source
al@19735 1 # SliTaz package receipt v2.
devl547@17582 2
devl547@17582 3 PACKAGE="libwebp"
al@21141 4 VERSION="1.0.2"
al@19796 5 CATEGORY="graphics"
al@19735 6 SHORT_DESC="WebP image library"
al@21082 7 MAINTAINER="devel@slitaz.org"
al@20639 8 LICENSE="Apache2"
al@20639 9 WEB_SITE="https://developers.google.com/speed/webp/"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libwebp.html"
devl547@17582 11
al@19693 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@21085 13 WGET_URL="http://downloads.webmproject.org/releases/webp/$TARBALL"
al@21141 14 TARBALL_SHA1="7cdff7beabc073ab0c5ecf888c326722e2f5688e"
al@19693 15
al@21078 16 BUILD_DEPENDS="libpng-dev libjpeg-turbo-dev tiff-dev giflib-dev"
al@21085 17 SPLIT="webp $PACKAGE $PACKAGE-dev"
devl547@17582 18
al@21085 19 COPY_webp="bin/"
al@21141 20 COPY_std="*.so.*"
al@21141 21 COPY_dev="@dev *.so"
al@21082 22
al@21085 23 CAT_webp="graphics|applications"
al@21085 24 DEPENDS_webp="$PACKAGE giflib libjpeg-turbo libpng libtiff"
al@21082 25
al@20595 26 compile_rules() {
al@19693 27 ./configure \
al@19693 28 --enable-libwebpmux \
al@19693 29 --enable-libwebpdemux \
al@19693 30 --enable-libwebpdecoder \
al@19693 31 --enable-libwebpextras \
al@19693 32 --enable-swap-16bit-csp \
al@19693 33 --disable-static \
al@19693 34 $CONFIGURE_ARGS &&
al@21082 35 fix libtool &&
al@20595 36 make &&
al@20595 37 make install
devl547@17582 38 }