wok-next view libwebp/receipt @ rev 21082

gcc: split *.dbg; tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Dec 25 02:00:49 2018 +0200 (2018-12-25)
parents 75632eca5b07
children 7c5d038be95b
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libwebp"
4 VERSION="1.0.1"
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="https://storage.googleapis.com/downloads.webmproject.org/releases/webp/$TARBALL"
15 BUILD_DEPENDS="libpng-dev libjpeg-turbo-dev tiff-dev giflib-dev"
16 SPLIT="$PACKAGE-apps $PACKAGE-dev"
18 COPY_std="*.so*"
19 COPY_apps="bin/"
21 CAT_apps="graphics|applications"
22 DEPENDS_apps="$PACKAGE giflib libjpeg-turbo libpng libtiff"
24 compile_rules() {
25 ./configure \
26 --enable-libwebpmux \
27 --enable-libwebpdemux \
28 --enable-libwebpdecoder \
29 --enable-libwebpextras \
30 --enable-swap-16bit-csp \
31 --disable-static \
32 $CONFIGURE_ARGS &&
33 fix libtool &&
34 make &&
35 make install
36 }