Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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:= rtorrent
  5. PKG_VERSION:= 0.8.5
  6. PKG_RELEASE:= 1
  7. PKG_BUILDDEP+= ncurses libtorrent curl
  8. PKG_MD5SUM:= e701095e1824b7e512a17000f4c0a783
  9. PKG_DESCR:= console torrent application
  10. PKG_SECTION:= net
  11. PKG_DEPENDS:= libncurses libtorrent libcurl
  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,RTORRENT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. ifeq ($(ADK_COMPILE_RTORRENT_WITH_UCLIBCXX),y)
  17. CONFIGURE_ENV+= CXXFLAGS="-fno-builtin -fno-rtti -nostdinc++ \
  18. -I${STAGING_DIR}/usr/include/uClibc++" \
  19. LIBS="-nodefaultlibs -luClibc++ -lc -lm -lgcc"
  20. endif
  21. CONFIGURE_STYLE:= gnu
  22. BUILD_STYLE:= auto
  23. INSTALL_STYLE:= auto
  24. post-install:
  25. ${INSTALL_DIR} ${IDIR_RTORRENT}/usr/bin
  26. ${INSTALL_BIN} ${WRKINST}/usr/bin/rtorrent ${IDIR_RTORRENT}/usr/bin
  27. include ${TOPDIR}/mk/pkg-bottom.mk