mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 05:03:03 +01:00
Previously the check for some recipes relied on sourceforge redirecting from downloads.sourceforge.net (SRC_URI is set to that) into the actual project page. Sourceforge does this for interactive browsers, but not for wget. With the check no longer mimicking a browser, and being truthful about coming from wget we need to explicitly fetch the project page in all cases, which is what this commit does. (many recipes already set this explicitly and don't need to be tweaked) (From OE-Core rev: 4c21ce6e34f6ce8fbf4db7bc2fd017c8f7a811b4) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
792 B
BlitzBasic
24 lines
792 B
BlitzBasic
SUMMARY = "Library for file management"
|
|
DESCRIPTION = "Contains a library and other files required by menu-cache-gen libexec of menu-cache-1.1.0. "
|
|
HOMEPAGE = "http://pcmanfm.sourceforge.net/"
|
|
|
|
LICENSE = "LGPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://src/fm-extra.h;beginline=8;endline=21;md5=ef1f84da64b3c01cca447212f7ef6007"
|
|
|
|
SECTION = "x11/libs"
|
|
DEPENDS = "glib-2.0-native glib-2.0 intltool-native"
|
|
|
|
SOURCEFORGE_PROJECT = "pcmanfm"
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${SOURCEFORGE_PROJECT}/libfm-${PV}.tar.xz \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "a5042630304cf8e5d8cff9d565c6bd546f228b48c960153ed366a34e87cad1e5"
|
|
|
|
S = "${WORKDIR}/libfm-${PV}"
|
|
|
|
EXTRA_OECONF = "--with-extra-only --with-gtk=no"
|
|
|
|
inherit autotools pkgconfig gtk-doc gettext sourceforge-releases
|
|
|
|
do_configure[dirs] =+ "${S}/m4"
|