35 lines
983 B
Bash
35 lines
983 B
Bash
# Template file for 'linbox'
|
|
pkgname=linbox
|
|
version=1.7.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config"
|
|
makedepends="fflas-ffpack"
|
|
short_desc="C++ library for exact, high-performance linear algebra"
|
|
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://linalg.org"
|
|
changelog="https://github.com/linbox-team/linbox/raw/master/ChangeLog"
|
|
distfiles="https://github.com/linbox-team/linbox/releases/download/v${version}/linbox-${version}.tar.gz"
|
|
checksum=6d2159fd395be0298362dd37f6c696676237bc8e2757341fbc46520e3b466bcc
|
|
nocross=yes
|
|
|
|
build_options="native_build"
|
|
|
|
if [ -z "$build_option_native_build" ]; then
|
|
configure_args="--without-archnative"
|
|
fi
|
|
|
|
linbox-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/bin
|
|
vmove usr/share
|
|
}
|
|
}
|