mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-17 06:50:07 +00:00
dc1ba53bf3
Adding UPSTREAM_CHECK_URI fix UNKNOWN_BROKEN status from running devtool check-upgrade-status. The next version of the package can be found from upstream sources. Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
26 lines
611 B
BlitzBasic
26 lines
611 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
DEPENDS = "zlib-native jpeg-native libpng-native libxext-native libxft-native"
|
|
|
|
SRC_URI += "file://fltk-native-link-libdl.patch"
|
|
|
|
UPSTREAM_CHECK_URI = "https://www.fltk.org/software.php"
|
|
|
|
inherit native
|
|
|
|
EXTRA_OECMAKE += " \
|
|
-DOPTION_BUILD_SHARED_LIBS=OFF \
|
|
-DOPTION_USE_THREADS=OFF \
|
|
-DOPTION_USE_XDBE=OFF \
|
|
-DOPTION_USE_XFT=OFF \
|
|
-DFLTK_BUILD_TEST=OFF \
|
|
-DOPTION_USE_XINERAMA=OFF \
|
|
-DOPTION_USE_XFIXES=OFF \
|
|
-DOPTION_USE_XCURSOR=OFF \
|
|
"
|
|
|
|
do_install:append() {
|
|
# make sure native fltk-config is not used accidentaly
|
|
rm -f ${D}${bindir}/fltk-config
|
|
}
|