mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
(From OE-Core rev: 43b1e1af671cbe5a76be1b97d185bb95b767efde) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
1.7 KiB
BlitzBasic
46 lines
1.7 KiB
BlitzBasic
SUMMARY = "SWIG - Simplified Wrapper and Interface Generator"
|
|
DESCRIPTION = "SWIG is a compiler that makes it easy to integrate C and C++ \
|
|
code with other languages including Perl, Tcl, Ruby, Python, Java, Guile, \
|
|
Mzscheme, Chicken, OCaml, Pike, and C#."
|
|
HOMEPAGE = "http://swig.sourceforge.net/"
|
|
LICENSE = "BSD-3-Clause & GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e7807a6282784a7dde4c846626b08fc6 \
|
|
file://LICENSE-GPL;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://LICENSE-UNIVERSITIES;md5=8ce9dcc8f7c994de4a408b205c72ba08"
|
|
|
|
SECTION = "devel"
|
|
|
|
DEPENDS = "libpcre2 bison-native"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
|
|
file://determinism.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "44fc829f70f1e17d635a2b4d69acab38896699ecc24aa023e516e0eabbec61b8"
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/swig/files/swig/"
|
|
UPSTREAM_CHECK_REGEX = "swig-(?P<pver>\d+(\.\d+)+)"
|
|
|
|
inherit cmake pkgconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_install:append:class-nativesdk() {
|
|
cd ${D}${bindir}
|
|
ln -s swig swig2.0
|
|
}
|
|
|
|
def swiglib_relpath(d):
|
|
swiglib = d.getVar('datadir') + "/" + d.getVar('BPN') + "/" + d.getVar('PV')
|
|
return os.path.relpath(swiglib, d.getVar('bindir'))
|
|
|
|
do_install:append:class-native() {
|
|
create_wrapper ${D}${bindir}/swig SWIG_LIB='`dirname $''realpath`'/${@swiglib_relpath(d)}
|
|
}
|
|
|
|
PACKAGE_PREPROCESS_FUNCS += "src_package_preprocess"
|
|
src_package_preprocess () {
|
|
# Trim build paths from comments and defines in generated sources to ensure reproducibility
|
|
sed -i -e "s,${WORKDIR},,g" \
|
|
-e "s,YY_YY_.*_CPARSE_PARSER_H_INCLUDED,YY_YY_CPARSE_PARSER_H_INCLUDED,g" \
|
|
${B}/Source/CParse/parser.*
|
|
}
|