mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +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>
34 lines
1.3 KiB
BlitzBasic
34 lines
1.3 KiB
BlitzBasic
SUMMARY = "Full-featured IRC plugin: multi-servers, proxy support, IPv6, SASL authentication, nicklist, DCC, and many other features"
|
|
HOMEPAE = "https://weechat.org/"
|
|
SECTION = "net"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e"
|
|
|
|
DEPENDS = "openssl zlib icu libgcrypt gnutls curl aspell"
|
|
|
|
SRC_URI = "https://weechat.org/files/src/weechat-${PV}.tar.xz \
|
|
file://0001-use-pkg-config-for-gcrypt-instead.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "6cb7d25a363b66b835f1b9f29f3580d6f09ac7d38505b46a62c178b618d9f1fb"
|
|
|
|
inherit cmake pkgconfig
|
|
|
|
PACKAGECONFIG ??= " ncurses python"
|
|
PACKAGECONFIG[ncurses] = "-DENABLE_NCURSES=ON,-DENABLE_NCURSES=OFF,ncurses"
|
|
PACKAGECONFIG[python] = "-DENABLE_PYTHON=ON,-DENABLE_PYTHON=OFF,python3,python3"
|
|
|
|
EXTRA_OECMAKE:append = " -DENABLE_PHP=OFF -DENABLE_TCL=OFF -DENABLE_LUA=OFF -DENABLE_JAVASCRIPT=OFF -DENABLE_RUBY=OFF -DENABLE_GUILE=OFF -DENABLE_PERL=OFF -DENABLE_ASPELL=ON"
|
|
|
|
do_configure:prepend(){
|
|
# Make sure we get dependencies from recipe-sysroot
|
|
sed -i -e 's# /usr/bin# ${RECIPE_SYSROOT}/${bindir}/#g' ${S}/cmake/FindPerl.cmake
|
|
sed -i -e 's# /usr/local/bin##g' ${S}/cmake/FindPerl.cmake
|
|
sed -i -e 's# /usr/pkg/bin##g' ${S}/cmake/FindPerl.cmake
|
|
}
|
|
|
|
do_install:append(){
|
|
rm -rf ${D}/${datadir}
|
|
}
|
|
|