Makefile 858 B

123456789101112131415161718192021222324252627282930313233
  1. # $OpenBSD: Makefile,v 1.15 2016/12/30 14:28:31 ajacoutot Exp $
  2. COMMENT= Google WebP image format conversion tool
  3. DISTNAME= libwebp-0.5.2
  4. CATEGORIES= graphics
  5. MASTER_SITES= http://downloads.webmproject.org/releases/webp/
  6. SHARED_LIBS += webp 3.0 # 6.0
  7. SHARED_LIBS += webpdecoder 1.0 # 2.0
  8. SHARED_LIBS += webpdemux 1.0 # 2.0
  9. SHARED_LIBS += webpextras 0.0 # 0.0
  10. SHARED_LIBS += webpmux 1.0 # 2.0
  11. HOMEPAGE= https://developers.google.com/speed/webp/
  12. # BSD
  13. PERMIT_PACKAGE_CDROM= Yes
  14. WANTLIB= c gif jpeg m png pthread tiff z
  15. LIB_DEPENDS= graphics/giflib \
  16. graphics/jpeg \
  17. graphics/png \
  18. graphics/tiff
  19. CONFIGURE_STYLE=gnu
  20. CONFIGURE_ARGS= --enable-everything
  21. CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
  22. LDFLAGS="-L${LOCALBASE}/lib"
  23. .include <bsd.port.mk>