kumquat-buildroot/package/joe/joe.mk
Fabrice Fontaine 2953cd2644 package/joe: add JOE_CPE_ID_VENDOR
cpe:2.3🅰️joseph_allen:joe is a valid CPE identifier for this package:

  https://nvd.nist.gov/products/cpe/detail/5F530947-2060-4842-92B9-5BC61D9C5430

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-01-30 22:56:49 +01:00

27 lines
681 B
Makefile

################################################################################
#
# joe
#
################################################################################
JOE_VERSION = 4.6
JOE_SITE = http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-$(JOE_VERSION)
JOE_LICENSE = GPL-2.0+
JOE_LICENSE_FILES = COPYING
JOE_CPE_ID_VENDOR = joseph_allen
ifeq ($(BR2_PACKAGE_NCURSES),y)
JOE_DEPENDENCIES += ncurses
JOE_CONF_OPTS += --enable-curses
else
JOE_CONF_OPTS += --disable-curses
endif
ifneq ($(BR2_PACKAGE_JOE_FULL),y)
define JOE_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/joe/joe $(TARGET_DIR)/usr/bin/joe
endef
endif
$(eval $(autotools-package))