mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-08 07:11:45 +02:00
29 lines
753 B
Plaintext
29 lines
753 B
Plaintext
# Contributor: Andrej Kolchin <alpine@kaathewise.net>
|
|
# Maintainer: Andrej Kolchin <alpine@kaathewise.net>
|
|
pkgname=futhark
|
|
pkgver=0.25.17
|
|
pkgrel=0
|
|
pkgdesc="A data-parallel functional programming language"
|
|
url="https://futhark-lang.org/"
|
|
arch="aarch64 x86_64" # Limited by Cabal, which in turn is limited by GHC
|
|
license="ISC"
|
|
makedepends="make cabal zlib-dev ncurses-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/diku-dk/futhark/archive/v$pkgver.tar.gz"
|
|
|
|
build() {
|
|
make configure
|
|
make build
|
|
}
|
|
|
|
check() {
|
|
make unittest
|
|
}
|
|
|
|
package() {
|
|
PREFIX="$pkgdir"/usr/ make install
|
|
}
|
|
|
|
sha512sums="
|
|
43ca87b6a04c25d3193af53c5aaa5844346409ef348f9a531975e3f603fc1431860e27d9121b9ac77b05822970c2f4bebac4e77f95ec9b144952ed5cc07412db futhark-0.25.17.tar.gz
|
|
"
|