mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Changelog: ========== - packit: Bump release only for daily Copr builds - tests: Split locale tests into multiple test cases - misc: Separate Ansible tasks into a different file - misc: Add build and test dependecies for CentOS - misc: Use --break-system-packages for pip on Debian - misc: Do not use "with_items" when installing packages - HACKING: Update directions for updating documentation - Fix compilation with C23 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
842 B
BlitzBasic
29 lines
842 B
BlitzBasic
DESCRIPTION = "The goal of this project is to provide a tiny library that would \
|
|
facilitate the common operations with sizes in bytes."
|
|
HOMEPAGE = "https://github.com/rhinstaller/libbytesize"
|
|
LICENSE = "LGPL-2.0-or-later"
|
|
SECTION = "devel/lib"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c07cb499d259452f324bb90c3067d85c"
|
|
|
|
|
|
SRCREV = "518fd4a0a863e896675a7f5ef0164a36eb4d7b03"
|
|
SRC_URI = "git://github.com/storaged-project/libbytesize;branch=main;protocol=https;tag=${PV}"
|
|
|
|
inherit gettext autotools pkgconfig python3native
|
|
|
|
DEPENDS += " \
|
|
libpcre2 \
|
|
gmp \
|
|
mpfr \
|
|
gettext-native \
|
|
"
|
|
|
|
FILES:${PN} += "${PYTHON_SITEPACKAGES_DIR}/bytesize"
|
|
|
|
PACKAGECONFIG ??= "python3"
|
|
PACKAGECONFIG[python3] = "--with-python3, --without-python3,,python3-core"
|
|
|
|
EXTRA_OECONF = "--without-gtk-doc"
|
|
EXTRA_OEMAKE = "py3libdir=${PYTHON_SITEPACKAGES_DIR}"
|