rtorrent_git.bb 648 B

1234567891011121314151617181920212223242526
  1. SUMMARY = "Torrent client"
  2. HOMEPAGE = "http://libtorrent.rakshasa.no/"
  3. LICENSE = "GPL-2.0"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
  5. DEPENDS = "libsigc++-2.0 curl cppunit libtorrent ncurses"
  6. SRC_URI = "git://github.com/rakshasa/rtorrent \
  7. file://don-t-run-code-while-configuring-package.patch \
  8. "
  9. # v0.9.8
  10. SRCREV = "6154d1698756e0c4842b1c13a0e56db93f1aa947"
  11. PV = "0.9.8"
  12. S = "${WORKDIR}/git"
  13. PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
  14. PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
  15. inherit autotools pkgconfig
  16. do_configure_prepend() {
  17. (cd ${S}; ./autogen.sh; cd -)
  18. }