f0ca197b0e
See release note: https://octave.org/news/release/2023/08/08/octave-8.3.0-released.html Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
666 B
Makefile
30 lines
666 B
Makefile
################################################################################
|
|
#
|
|
# octave
|
|
#
|
|
################################################################################
|
|
|
|
OCTAVE_VERSION = 8.3.0
|
|
OCTAVE_SITE = https://ftp.gnu.org/gnu/octave
|
|
OCTAVE_SOURCE = octave-$(OCTAVE_VERSION).tar.lz
|
|
OCTAVE_LICENSE = GPL-3.0+
|
|
OCTAVE_LICENSE_FILES = COPYING
|
|
OCTAVE_AUTORECONF = YES
|
|
|
|
OCTAVE_CONF_OPTS = --disable-java
|
|
|
|
OCTAVE_DEPENDENCIES = \
|
|
host-gperf \
|
|
host-pkgconf \
|
|
openblas \
|
|
pcre2
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
OCTAVE_CONF_OPTS += --enable-readline
|
|
OCTAVE_DEPENDENCIES += readline
|
|
else
|
|
OCTAVE_CONF_OPTS += --disable-readline
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|