mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-15 06:10:02 +00:00
c61dc077bb
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
33 lines
951 B
BlitzBasic
33 lines
951 B
BlitzBasic
DESCRIPTION = "libTorrent is a BitTorrent library written in C++ for *nix, \
|
|
with a focus on high performance and good code."
|
|
HOMEPAGE = "http://libtorrent.rakshasa.no/"
|
|
LICENSE = "GPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
|
|
|
DEPENDS = "zlib libsigc++-2.0 openssl cppunit"
|
|
|
|
SRC_URI = "git://github.com/rakshasa/libtorrent \
|
|
file://don-t-run-code-while-configuring-package.patch \
|
|
"
|
|
SRCREV = "756f70010779927dc0691e1e722ed433d5d295e1"
|
|
|
|
PV = "0.13.8"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ??= "instrumentation"
|
|
|
|
PACKAGECONFIG:remove:mipsarch = "instrumentation"
|
|
PACKAGECONFIG:remove:powerpc = "instrumentation"
|
|
PACKAGECONFIG:remove:riscv32 = "instrumentation"
|
|
|
|
PACKAGECONFIG[instrumentation] = "--enable-instrumentation,--disable-instrumentation,"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--with-zlib=${STAGING_EXECPREFIXDIR}"
|
|
|
|
do_configure:prepend() {
|
|
(cd ${S}; ./autogen.sh; cd -)
|
|
}
|