mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
3d8dec72de
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>
24 lines
625 B
BlitzBasic
24 lines
625 B
BlitzBasic
SUMMARY = "LibTomMath is a number theoretic multiple-precision integer library"
|
|
HOMEPAGE = "https://www.libtom.net/LibTomMath"
|
|
SECTION = "libs"
|
|
LICENSE = "Unlicense"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402"
|
|
|
|
DEPENDS = "libtool-cross"
|
|
|
|
SRC_URI = "git://github.com/libtom/libtommath.git;protocol=https;branch=master"
|
|
|
|
SRCREV = "95d80fd8229d05dd6cb4ec88bc8d4f5377ff00ef"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "'PREFIX=${prefix}' 'DESTDIR=${D}' 'LIBPATH=${libdir}' 'CFLAGS=${CFLAGS}'"
|
|
|
|
do_compile() {
|
|
oe_runmake -f makefile.shared
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake -f makefile.shared install
|
|
}
|