mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-25 19:27:14 +00:00
1fe38ad4f0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
43 lines
1.7 KiB
BlitzBasic
43 lines
1.7 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 = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
|
|
|
|
DEPENDS = "zlib libgcrypt gnutls curl aspell zstd cjson gettext-native"
|
|
|
|
SRC_URI = "https://weechat.org/files/src/weechat-${PV}.tar.xz"
|
|
|
|
SRC_URI[sha256sum] = "5c7d9539fa86c99ea76a551a889a92bac21eab7bb2790dbd346452d00b10c37c"
|
|
|
|
inherit cmake pkgconfig python3targetconfig
|
|
|
|
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 \
|
|
-DLIBDIR=${libdir}"
|
|
|
|
# CMake's FindPython queries the (native) interpreter for the Development.Embed
|
|
# component, which then fails to locate the cross (target) libpython/headers.
|
|
# Point it explicitly at the target sysroot library and include directory.
|
|
EXTRA_OECMAKE:append = " \
|
|
-DPython_INCLUDE_DIR=${STAGING_INCDIR}/python${PYTHON_BASEVERSION} \
|
|
-DPython_LIBRARY=${STAGING_LIBDIR}/libpython${PYTHON_BASEVERSION}.so \
|
|
"
|
|
|
|
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}
|
|
}
|
|
|