mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
We don't need PATCHTOOL to be set to git in this recipe, and setting it that way requires that the running user has git user & email configured, which on a build server it might well not be. (From OE-Core rev: ae8dcdc3c8e090fe392de86dc59135a38f06e9ca) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
949 B
BlitzBasic
29 lines
949 B
BlitzBasic
SUMMARY = "Build Result Compare Script"
|
|
DESCRIPTION = "This package contains scripts to find out if the build result\
|
|
differs to a former build."
|
|
HOMEPAGE = "https://github.com/openSUSE/build-compare"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
SRC_URI = "git://github.com/openSUSE/build-compare.git \
|
|
file://Rename-rpm-check.sh-to-pkg-diff.sh.patch;striplevel=1 \
|
|
file://Ignore-DWARF-sections.patch;striplevel=1 \
|
|
file://0001-Add-support-for-deb-and-ipk-packaging.patch \
|
|
"
|
|
|
|
SRCREV = "c5352c054c6ef15735da31b76d6d88620f4aff0a"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
BBCLASSEXTEND += "native nativesdk"
|
|
|
|
do_install() {
|
|
install -d ${D}/${bindir}
|
|
install -m 755 functions.sh ${D}/${bindir}
|
|
install -m 755 pkg-diff.sh ${D}/${bindir}
|
|
install -m 755 same-build-result.sh ${D}/${bindir}
|
|
install -m 755 srpm-check.sh ${D}/${bindir}
|
|
}
|
|
|
|
RDEPENDS_${PN} += "bash"
|