Files
meta-openembedded/meta-oe/recipes-support/fltk/fltk-native.bb
T
Alexandre Truong dc1ba53bf3 fltk-native: include UPSTREAM_CHECK_URI to fix UNKNOWN_BROKEN status
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>
2024-07-24 08:56:33 -07:00

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
}