mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
* Fix indentation and spacing * Drop SRC_URI checksums that aren't used (recipe is fetching from git) (From OE-Core rev: d673ec1686631f4b146f59f8dc36287b65a5d95d) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
427 B
BlitzBasic
24 lines
427 B
BlitzBasic
SUMMARY = "quilt-like tool for Git"
|
|
LICENSE = "GPLv2"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b6f3400dc1a01cebafe8a52b3f344135"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://repo.or.cz/guilt.git \
|
|
file://guilt-bash.patch \
|
|
"
|
|
|
|
SRCREV = "c2a5bae511c6d5354aa4e1cb59069c31df2b8eeb"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# we don't compile, we just install
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake PREFIX=${D}/${prefix} install
|
|
}
|