Makefile 887 B

12345678910111213141516171819202122232425262728293031
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME= neon
  5. PKG_VERSION= 0.28.4
  6. PKG_RELEASE= 1
  7. PKG_MD5SUM= 6c3b94362af743d046e198e9fcbe4a85
  8. PKG_DESCR:= HTTP and WebDAV library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libpthread libxml2 libopenssl zlib
  11. PKG_UTL:= http://webdav.org/neon
  12. PKG_SITES= http://webdav.org/neon/
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,NEON,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE= gnu
  16. CONFIGURE_ARGS+= --with-ssl=openssl \
  17. --without-gssapi \
  18. --with-libxml2
  19. BUILD_STYLE= auto
  20. INSTALL_STYLE= auto confprog
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_NEON}/usr/lib
  23. $(CP) ${WRKINST}/usr/lib/lib*.so.* ${IDIR_NEON}/usr/lib
  24. include ${TOPDIR}/mk/pkg-bottom.mk