diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-04-01 22:50:40 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-04-02 14:56:47 -0700 |
| commit | e3885c296fc8131f140e678fd65da6f0c02626a2 (patch) | |
| tree | 598b920b1ea121c70887308da56cda35148b31c2 /meta-oe/recipes-support/libtommath/libtommath_1.3.0.bb | |
| parent | cc310ad6840d474b86d016382c2d709ed9db056f (diff) | |
| download | meta-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.bb | 23 |
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 @@ | |||
| 1 | SUMMARY = "LibTomMath is a number theoretic multiple-precision integer library" | ||
| 2 | HOMEPAGE = "https://www.libtom.net/LibTomMath" | ||
| 3 | SECTION = "libs" | ||
| 4 | LICENSE = "Unlicense" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402" | ||
| 6 | |||
| 7 | DEPENDS = "libtool-cross" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/libtom/libtommath.git;protocol=https;branch=master" | ||
| 10 | |||
| 11 | SRCREV = "95d80fd8229d05dd6cb4ec88bc8d4f5377ff00ef" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | |||
| 15 | EXTRA_OEMAKE = "'PREFIX=${prefix}' 'DESTDIR=${D}' 'LIBPATH=${libdir}' 'CFLAGS=${CFLAGS}'" | ||
| 16 | |||
| 17 | do_compile() { | ||
| 18 | oe_runmake -f makefile.shared | ||
| 19 | } | ||
| 20 | |||
| 21 | do_install() { | ||
| 22 | oe_runmake -f makefile.shared install | ||
| 23 | } | ||
