Makefile 935 B

1234567891011121314151617181920212223242526272829303132
  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_BUILDDEP+= libpthread libxml2 openssl zlib
  8. PKG_MD5SUM= 6c3b94362af743d046e198e9fcbe4a85
  9. PKG_DESCR:= HTTP and WebDAV library
  10. PKG_SECTION:= libs
  11. PKG_DEPENDS:= libpthread libxml2 libopenssl zlib
  12. PKG_UTL:= http://webdav.org/neon
  13. PKG_SITES= http://webdav.org/neon/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,NEON,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_STYLE= gnu
  17. CONFIGURE_ARGS+= --with-ssl=openssl \
  18. --without-gssapi \
  19. --with-libxml2
  20. BUILD_STYLE= auto
  21. INSTALL_STYLE= auto confprog
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_NEON}/usr/lib
  24. $(CP) ${WRKINST}/usr/lib/lib*.so.* ${IDIR_NEON}/usr/lib
  25. include ${TOPDIR}/mk/pkg-bottom.mk