forked from brl/citadel
29 lines
697 B
BlitzBasic
29 lines
697 B
BlitzBasic
DESCRIPTION = "Ext4 creation utility used here because it outputs reproducible builds"
|
|
HOMEPAGE = "https://git.subgraph.com.com/isa/make_ext4"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
|
|
|
|
SRCREV = "5c201be7d72aff735da27e17c29852e0cefe3e52"
|
|
|
|
SRC_URI = "git://git.subgraph.com/isa/make_ext4fs.git;protocol=https;branch=master"
|
|
|
|
DEPENDS = "zlib-native"
|
|
inherit pkgconfig native
|
|
|
|
PACKAGECONFIG = ""
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
do_compile () {
|
|
export LDFLAGS=""
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
pwd
|
|
ls
|
|
install -d ${D}${bindir}
|
|
install -m 755 -T ${B}/make_ext4fs ${D}${bindir}/make_ext4fs
|
|
} |