blob: 86d3be16894b7802be24a060e2161258f08ea96a [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001SUMMARY = "Torrent client"
2HOMEPAGE = "http://libtorrent.rakshasa.no/"
3LICENSE = "GPL-2.0"
4LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5
6DEPENDS = "libsigc++-2.0 curl cppunit libtorrent ncurses"
7
8SRC_URI = "git://github.com/rakshasa/rtorrent \
9 file://don-t-run-code-while-configuring-package.patch \
10"
Brad Bishop868407c2019-11-04 13:24:47 -050011# v0.9.8
12SRCREV = "6154d1698756e0c4842b1c13a0e56db93f1aa947"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013
Brad Bishop868407c2019-11-04 13:24:47 -050014PV = "0.9.8"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015
16S = "${WORKDIR}/git"
17
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
19
20PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
21
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022inherit autotools pkgconfig
23
Patrick Williams213cb262021-08-07 19:21:33 -050024do_configure:prepend() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050025 (cd ${S}; ./autogen.sh; cd -)
26}