Makefile 850 B

123456789101112131415161718192021222324252627
  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:= libtorrent
  5. PKG_VERSION:= 0.12.5
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= fe8155d364b220713074423100d4bf29
  8. PKG_DESCR:= A bittorrent library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libopenssl libsigc++
  11. PKG_BUILDDEP:= openssl libsigc++
  12. PKG_URL:= http://libtorrent.rakshasa.no/
  13. PKG_SITES:= http://libtorrent.rakshasa.no/downloads/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,LIBTORRENT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ARGS+= --enable-aligned
  17. post-install:
  18. ${INSTALL_DIR} ${IDIR_LIBTORRENT}/usr/lib
  19. ${CP} ${WRKINST}/usr/lib/libtorrent.so* ${IDIR_LIBTORRENT}/usr/lib/
  20. include ${TOPDIR}/mk/pkg-bottom.mk