mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
629 B
BlitzBasic
21 lines
629 B
BlitzBasic
SUMMARY = "FBGrab is a framebuffer screenshot program"
|
|
HOMEPAGE = "https://github.com/GunnarMonell/fbgrab"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ea5bed2f60d357618ca161ad539f7c0a"
|
|
SECTION = "console/utils"
|
|
DEPENDS = "libpng zlib"
|
|
SRC_URI = "git://github.com/GunnarMonell/fbgrab.git;protocol=https;branch=master"
|
|
|
|
SRCREV = "f43ce6d5ce48fb01360eaa7c4a92c2573a1d02f8"
|
|
|
|
do_configure:prepend() {
|
|
sed \
|
|
-e 's|$(DESTDIR)/usr/bin/|$(DESTDIR)${bindir}/|g' \
|
|
-e 's|$(DESTDIR)/usr/man/|$(DESTDIR)${mandir}/|g' \
|
|
-i ${S}/Makefile
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
}
|