Makefile 909 B

123456789101112131415161718192021222324252627282930
  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.13.0
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= d499178f72010d5067a77f41fa1a1505
  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. PKG_OPTS:= dev
  15. PKG_ARCH_DEPENDS:= !avr32
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBTORRENT,libtorrent,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. CONFIGURE_ARGS+= --enable-aligned
  19. libtorrent-install:
  20. ${INSTALL_DIR} ${IDIR_LIBTORRENT}/usr/lib
  21. ${CP} ${WRKINST}/usr/lib/libtorrent.so* ${IDIR_LIBTORRENT}/usr/lib
  22. include ${TOPDIR}/mk/pkg-bottom.mk