forked from openembedded/meta-openembedded
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
octave: upgrade 4.4.1 -> 6.4.0 and overhaul recipe
Complete rework of recipe was done with two targets in mind: * Do not disappoint users on this project - it is a treasure for mathians * Do not over-complicate recipe unnecessarily Signed-off-by: Andreas Müller <[email protected]>
- Loading branch information
1 parent
21e3859
commit 3513dab
Showing
2 changed files
with
52 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
SUMMARY = "High-level language, primarily intended for numerical computations" | ||
HOMEPAGE = "http://www.gnu.org/software/octave/" | ||
SECTION = "math" | ||
|
||
LICENSE = "GPL-3.0-only" | ||
LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464" | ||
|
||
# To build, add 'FORTRAN:forcevariable = ",fortran"' to your local.conf (or use | ||
# meta-mortsgna as distro :) | ||
|
||
DEPENDS = " \ | ||
gperf-native \ | ||
libglu \ | ||
lapack \ | ||
fftw \ | ||
curl \ | ||
freetype \ | ||
fontconfig \ | ||
texinfo \ | ||
pcre \ | ||
readline \ | ||
fltk \ | ||
hdf5 \ | ||
libsndfile1 \ | ||
" | ||
|
||
inherit autotools pkgconfig texinfo gettext gtk-icon-cache mime-xdg features_check | ||
|
||
REQUIRED_DISTRO_FEATURES = "x11 opengl" | ||
|
||
SRC_URI = " \ | ||
${GNU_MIRROR}/octave/${BPN}-${PV}.tar.gz \ | ||
file://fix-blas-library-integer-size.patch \ | ||
" | ||
SRC_URI[sha256sum] = "b48f33d4fceaf394cfbea73a8c850000936d83a41739a24f7568b5b0a7b39acd" | ||
|
||
EXTRA_OECONF = " \ | ||
--disable-java \ | ||
--disable-docs \ | ||
" | ||
|
||
do_compile:prepend() { | ||
for folder in "liboctave/operators liboctave/numeric liboctave/array liboctave/util"; do | ||
mkdir -p ${B}/${folder} | ||
done | ||
} | ||
|
||
FILES:${PN} += "${datadir}/metainfo" | ||
FILES:${PN}-dev += "${libdir}/${BPN}/${PV}/lib*${SOLIBSDEV}" | ||
|
||
# fortran is not enabled by default | ||
EXCLUDE_FROM_WORLD = "1" |