Makefile 991 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # $OpenBSD: Makefile,v 1.13 2016/11/04 11:35:20 sthen Exp $
  2. COMMENT = light RDF manipulation with LADSPA plugin support
  3. DISTNAME = LRDF-0.5.0
  4. PKGNAME = lib${DISTNAME:L}
  5. REVISION = 5
  6. CATEGORIES = textproc
  7. SHARED_LIBS = lrdf 1.0 # 0.0
  8. HOMEPAGE = https://github.com/swh/LRDF/
  9. # GPLv2
  10. PERMIT_PACKAGE_CDROM = Yes
  11. WANTLIB += crypto curl lzma m nghttp2 pthread raptor2 ssl xml2 xslt yajl
  12. WANTLIB += z
  13. MASTER_SITES = https://spacehopper.org/mirrors/
  14. MODULES = devel/gettext
  15. BUILD_DEPENDS = audio/ladspa \
  16. devel/libtool \
  17. ${MODGNU_AUTOCONF_DEPENDS} \
  18. ${MODGNU_AUTOMAKE_DEPENDS}
  19. LIB_DEPENDS = devel/libyajl \
  20. textproc/raptor
  21. AUTOCONF_VERSION = 2.69
  22. AUTOMAKE_VERSION = 1.11
  23. CONFIGURE_STYLE = gnu
  24. CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
  25. LDFLAGS="-L${LOCALBASE}/lib"
  26. TEST_DEPENDS = audio/swh-plugins
  27. post-patch:
  28. @cd ${WRKBUILD} && env AUTOCONF_VERSION=${AUTOCONF_VERSION} \
  29. AUTOMAKE_VERSION=${AUTOMAKE_VERSION} ./autogen.sh
  30. .include <bsd.port.mk>