void-packages/srcpkgs/julia/template
Adam Beckmeyer 303c30b697 julia: update to 1.2.0.
See https://github.com/JuliaLang/julia/blob/release-1.2/NEWS.md for updates.

[ci skip] for llvm build
2019-08-21 17:25:42 +02:00

83 lines
2.2 KiB
Bash

# Template file for 'julia'
pkgname=julia
version=1.2.0
revision=1
archs="i686* x86_64*"
build_style=gnu-makefile
make_build_args="prefix=/usr sysconfdir=/etc USE_SYSTEM_LLVM=0 USE_LLVM_SHLIB=1
USE_SYSTEM_PCRE=1 USE_SYSTEM_BLAS=1 USE_SYSTEM_LAPACK=1 USE_SYSTEM_GMP=1
USE_SYSTEM_MPFR=1 USE_SYSTEM_LIBUV=0 USE_SYSTEM_LIBGIT2=1 USE_BINARYBUILDER=0
LIBLAPACK=-lopenblas LIBLAPACKNAME=libopenblas
LIBBLAS=-lopenblas LIBBLASNAME=libopenblas"
make_install_args="$make_build_args"
make_check_args="$make_build_args"
make_check_target=testall
conf_files="/etc/julia/startup.jl"
hostmakedepends="perl cmake python"
makedepends="openblas-devel pcre2-devel gmp-devel mpfr-devel libgit2-devel
libcurl-devel libssh2-devel mbedtls-devel libatomic-devel"
depends="pcre2 gmp mpfr libgit2 libcurl libssh2 mbedtls libatomic"
short_desc="High-level, high-performance dynamic programming language"
maintainer="Adam Beckmeyer <adam_git@thebeckmeyers.xyz>"
license="MIT"
homepage="https://julialang.org"
distfiles="https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"
checksum=2419b268fc5c3666dd9aeb554815fe7cf9e0e7265bc9b94a43957c31a68d9184
nocross=yes
# Falsely detects dependency on libllvm
skiprdeps="/usr/lib/libjulia.so.1.2 /usr/lib/julia/libllvmcalltest.so"
case "$XBPS_TARGET_MACHINE" in
*-musl)
broken="fails to compile internal LLVM"
;;
i686-musl)
makedepends+=" libexecinfo-devel"
depends+=" libexecinfo"
LDFLAGS="-lexecinfo -lc"
;;
x86_64-musl)
makedepends+=" libexecinfo-devel"
depends+=" libexecinfo"
LDFLAGS="-lexecinfo"
;;
esac
case "$XBPS_TARGET_MACHINE" in
i686*)
export M="pentium4"
export CFLAGS="-march=pentium4"
export CXXFLAGS="-march=pentium4"
make_build_args+=" MARCH=pentium4"
;;
x86_64*)
export M="x86-64"
export CFLAGS="-march=x86-64"
export CXXFLAGS="-march=x86-64"
make_build_args+=" MARCH=x86-64"
;;
esac
post_extract() {
sed -i '/^install:/s| \$(BUILDROOT)/doc.*||' Makefile
}
post_install() {
vlicense LICENSE.md
}
julia-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
}
}
julia-doc_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - documentation files"
pkg_install() {
vmove usr/share/doc
}
}