Edit

IABSD.fr/ports/graphics/libwebp/Makefile

Branch :

  • Show log

    Commit

  • Author : rsadowski
    Date : 2021-02-13 06:17:27
    Hash : b6d0f822
    Message : Update libwebp to 1.2.0 - 12/23/2020: version 1.2.0 * API changes: - libwebp: encode.h: add a qmin / qmax range for quality factor (cwebp adds -qrange) * lossless encoder improvements * SIMD support for Wasm builds * add xcframeworkbuild.sh, supports Mac Catalyst builds * import fuzzers from oss-fuzz & chromium (#409) * webpmux: add an '-set loop <value>' option (#494) * toolchain updates and bug fixes (#449, #463, #470, #475, #477, #478, #479, #488, #491) Update diff from Brad

  • graphics/libwebp/Makefile
  • # $OpenBSD: Makefile,v 1.23 2021/02/13 06:17:27 rsadowski Exp $
    
    COMMENT=	Google WebP image format conversion tool
    
    VER=		1.2.0
    CATEGORIES=	graphics
    GH_ACCOUNT=	webmproject
    GH_PROJECT=	libwebp
    GH_TAGNAME=	v${VER}
    
    SHARED_LIBS +=  webp                 4.3      # 6.0
    SHARED_LIBS +=  webpdecoder          2.1      # 2.0
    SHARED_LIBS +=  webpdemux            2.0      # 2.0
    SHARED_LIBS +=  webpmux              2.0      # 2.0
    
    HOMEPAGE=	https://developers.google.com/speed/webp/
    
    # BSD
    PERMIT_PACKAGE=	Yes
    
    WANTLIB=	c gif jpeg lzma m png pthread tiff z zstd
    
    LIB_DEPENDS=	graphics/giflib \
    		graphics/jpeg \
    		graphics/png \
    		graphics/tiff
    
    AUTOCONF_VERSION=	2.69
    AUTOMAKE_VERSION=	1.15
    
    CONFIGURE_STYLE=autoreconf
    CONFIGURE_ARGS=	--enable-everything \
    		--disable-sdl
    CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
    		LDFLAGS="-L${LOCALBASE}/lib"
    
    .include <bsd.port.mk>