Makefile 882 B

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