summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-04-01 22:50:40 +0800
committerKhem Raj <raj.khem@gmail.com>2024-04-02 14:56:47 -0700
commite3885c296fc8131f140e678fd65da6f0c02626a2 (patch)
tree598b920b1ea121c70887308da56cda35148b31c2 /meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb
parentcc310ad6840d474b86d016382c2d709ed9db056f (diff)
downloadmeta-openembedded-e3885c296fc8131f140e678fd65da6f0c02626a2.tar.gz
libtommath: upgrade 1.2.1 -> 1.3.0
Changelog: =========== - Deprecate more APIs which are replaced in develop - Add support for CMake - Add support for GitHub Actions Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb')
-rw-r--r--meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb b/meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb
new file mode 100644
index 0000000000..4d6c06240d
--- /dev/null
+++ b/meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb
@@ -0,0 +1,23 @@
1SUMMARY = "LibTomMath is a number theoretic multiple-precision integer library"
2HOMEPAGE = "https://www.libtom.net/LibTomMath"
3SECTION = "libs"
4LICENSE = "Unlicense"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402"
6
7DEPENDS = "libtool-cross"
8
9SRC_URI = "git://github.com/libtom/libtommath.git;protocol=https;branch=master"
10
11SRCREV = "95d80fd8229d05dd6cb4ec88bc8d4f5377ff00ef"
12
13S = "${WORKDIR}/git"
14
15EXTRA_OEMAKE = "'PREFIX=${prefix}' 'DESTDIR=${D}' 'LIBPATH=${libdir}' 'CFLAGS=${CFLAGS}'"
16
17do_compile() {
18 oe_runmake -f makefile.shared
19}
20
21do_install() {
22 oe_runmake -f makefile.shared install
23}