Makefile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_BUILDDEP+= openssl libsigc++
  8. PKG_MD5SUM:= fe8155d364b220713074423100d4bf29
  9. PKG_DESCR:= A bittorrent library
  10. PKG_SECTION:= libs
  11. PKG_DEPENDS:= libopenssl libsigc++
  12. PKG_URL:= http://libtorrent.rakshasa.no
  13. PKG_SITES:= http://libtorrent.rakshasa.no/downloads/
  14. include ${TOPDIR}/mk/package.mk
  15. ifeq ($(ADK_COMPILE_LIBTORRENT_WITH_UCLIBCXX),y)
  16. PKG_DEPENDS+= uclibc++
  17. else
  18. PKG_DEPENDS+= libstdcxx
  19. endif
  20. $(eval $(call PKG_template,LIBTORRENT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  21. ifeq ($(ADK_COMPILE_LIBTORRENT_WITH_UCLIBCXX),y)
  22. CONFIGURE_ENV+= CXXFLAGS="-fno-builtin -fno-rtti -nostdinc++ -fno-strict-aliasing -fno-inline \
  23. -I${STAGING_DIR}/usr/include/uClibc++" \
  24. LIBS="-nodefaultlibs -luClibc++ -lc -lm -lgcc"
  25. endif
  26. CONFIGURE_STYLE= gnu
  27. CONFIGURE_ARGS+= --enable-aligned
  28. BUILD_STYLE= auto
  29. INSTALL_STYLE= auto
  30. ifeq (${ADK_COMPILE_LIBTORRENT_WITH_UCLIBCXX},y)
  31. # add workaround because libtool tries to link libstdc++
  32. post-configure:
  33. ${SED} 's#postdeps="-lstdc.*#postdeps=""#' \
  34. ${WRKBUILD}/libtool
  35. endif
  36. post-install:
  37. ${INSTALL_DIR} ${IDIR_LIBTORRENT}/usr/lib
  38. ${CP} ${WRKINST}/usr/lib/libtorrent.so.* ${IDIR_LIBTORRENT}/usr/lib/
  39. include ${TOPDIR}/mk/pkg-bottom.mk