LIBB64: add support for sysdig_driver
Change-Id: Ibd514c39eb7e53e3a4cf8fa92bb280ba4b4ae384 Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
This commit is contained in:
parent
4769431c72
commit
560c7b746d
|
|
@ -0,0 +1,24 @@
|
||||||
|
SUMMARY = "Library for base64 encoding/decoding data"
|
||||||
|
DESCRIPTION = "library of ANSI C routines for fast encoding/decoding data into and \
|
||||||
|
from a base64-encoded format"
|
||||||
|
HOMEPAGE = "https://github.com/libb64/libb64"
|
||||||
|
LICENSE = "PD"
|
||||||
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ce551aad762074c7ab618a0e07a8dca3"
|
||||||
|
|
||||||
|
SRC_URI = "git://github.com/libb64/libb64.git;protocol=https"
|
||||||
|
SRCREV="04a1ee7590ebb8a81bbd3854ec141c2d4c2bead9"
|
||||||
|
|
||||||
|
PV = "1.4.1+git${SRCPV}"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
|
EXTRA_OEMAKE = "all_src all_base64"
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
mkdir -p ${D}${bindir}
|
||||||
|
install -m 755 ${S}/base64/base64 ${D}${bindir}/
|
||||||
|
mkdir -p ${D}${includedir}/b64
|
||||||
|
install -m 644 ${S}/include/b64/*.h ${D}${includedir}/b64
|
||||||
|
mkdir -p ${D}${libdir}
|
||||||
|
install -m 644 ${S}/src/libb64.a ${D}${libdir}/
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue