blob: d5411b19b2b9f3ecb1386b6ae3195a6282999979 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001SUMMARY = "Torrent client"
2HOMEPAGE = "http://libtorrent.rakshasa.no/"
Andrew Geisslerc5535c92023-01-27 16:10:19 -06003LICENSE = "GPL-2.0-or-later"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05004LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5
Andrew Geisslerc5535c92023-01-27 16:10:19 -06006DEPENDS = "autoconf-archive libsigc++-2.0 curl cppunit libtool libtorrent ncurses"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007
Andrew Geisslerc5535c92023-01-27 16:10:19 -06008SRC_URI = "git://github.com/rakshasa/rtorrent;branch=master;protocol=https"
9SRCREV = "d067bd802e44f0e6a747aabcc311ada2175fd550"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010
Andrew Geisslerc5535c92023-01-27 16:10:19 -060011PV = "0.9.8+git${SRCPV}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050012
13S = "${WORKDIR}/git"
14
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
16
17PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
18
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019inherit autotools pkgconfig
20
Andrew Geisslerc5535c92023-01-27 16:10:19 -060021EXTRA_AUTORECONF += "--exclude=aclocal"
22
23CXXFLAGS += "-std=gnu++14"