diff options
Diffstat (limited to 'meta-oe/recipes-connectivity/libtorrent/libtorrent_0.14.0.bb')
-rw-r--r-- | meta-oe/recipes-connectivity/libtorrent/libtorrent_0.14.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.14.0.bb b/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.14.0.bb new file mode 100644 index 000000000..912b00261 --- /dev/null +++ b/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.14.0.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | DESCRIPTION = "libTorrent is a BitTorrent library written in C++ for *nix, \ | ||
2 | with a focus on high performance and good code." | ||
3 | HOMEPAGE = "http://libtorrent.rakshasa.no/" | ||
4 | LICENSE = "GPL-2.0-or-later" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" | ||
6 | |||
7 | DEPENDS = "zlib libsigc++-2.0 openssl cppunit" | ||
8 | |||
9 | SRC_URI = "git://github.com/rakshasa/libtorrent;branch=master;protocol=https" | ||
10 | SRCREV = "08fb6635ba249665cb08a4de1b955288d25c21e1" | ||
11 | |||
12 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" | ||
13 | |||
14 | CVE_STATUS[CVE-2009-1760] = "backported-patch: patched in our product" | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | |||
18 | CVE_PRODUCT = "" | ||
19 | |||
20 | PACKAGECONFIG ??= "instrumentation aligned" | ||
21 | |||
22 | PACKAGECONFIG:remove:mipsarch = "instrumentation" | ||
23 | PACKAGECONFIG:remove:powerpc = "instrumentation" | ||
24 | PACKAGECONFIG:remove:riscv32 = "instrumentation" | ||
25 | |||
26 | PACKAGECONFIG[instrumentation] = "--enable-instrumentation,--disable-instrumentation," | ||
27 | PACKAGECONFIG[aligned] = "--enable-aligned,--disable-aligned," | ||
28 | |||
29 | inherit autotools pkgconfig | ||
30 | |||
31 | EXTRA_OECONF = "--with-zlib=${STAGING_EXECPREFIXDIR}" | ||