Makefile 897 B

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