cded7ae71a
We want to use SPDX identifier for licenses as much as possible. SPDX short identifier for GPLv1/GPLv1+ is GPL-1.0/GPL-1.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/GPLv1(\+)?/GPL-1.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
644 B
Makefile
26 lines
644 B
Makefile
################################################################################
|
|
#
|
|
# joe
|
|
#
|
|
################################################################################
|
|
|
|
JOE_VERSION = 3.7
|
|
JOE_SITE = http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-$(JOE_VERSION)
|
|
JOE_LICENSE = GPL-1.0+
|
|
JOE_LICENSE_FILES = COPYING
|
|
|
|
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 $(TARGET_DIR)/usr/bin/joe
|
|
endef
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|