mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 20:46:39 +02:00
62 lines
1.3 KiB
Text
62 lines
1.3 KiB
Text
# Contributor: Grigory Kirillov <txgk@bk.ru>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=fplll
|
|
pkgver=5.5.0
|
|
pkgrel=0
|
|
pkgdesc="Lattice algorithms using floating-point arithmetic"
|
|
url="https://github.com/fplll/fplll"
|
|
arch="all"
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="gmp-dev mpfr-dev"
|
|
subpackages="
|
|
$pkgname-static
|
|
$pkgname-dev
|
|
$pkgname-libs
|
|
$pkgname-strategies::noarch
|
|
"
|
|
source="https://github.com/fplll/fplll/releases/download/$pkgver/fplll-$pkgver.tar.gz"
|
|
|
|
case "$CARCH" in
|
|
aarch64|ppc64le|s390x|loongarch64)
|
|
# libqd-dev package is unavailable
|
|
;;
|
|
*)
|
|
makedepends="$makedepends libqd-dev"
|
|
;;
|
|
esac
|
|
|
|
build() {
|
|
export CXXFLAGS="${CXXFLAGS/-Os/-O3}" # gotta go fast
|
|
|
|
./configure \
|
|
--target=$CTARGET \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
mv -v "$pkgdir"/usr/bin/$CTARGET-fplll "$pkgdir"/usr/bin/fplll
|
|
mv -v "$pkgdir"/usr/bin/$CTARGET-latticegen "$pkgdir"/usr/bin/latticegen
|
|
}
|
|
|
|
strategies() {
|
|
pkgdesc="Strategies for fplll"
|
|
|
|
amove usr/share/fplll/strategies
|
|
}
|
|
|
|
sha512sums="
|
|
c070dab206ebf692aa2afd8e6cdf412b5497488e8205332b4b726dd69283f415f86d1bcb55937a678cacd47b2068eea3f776eae8e050c4096e48d1cefd3de291 fplll-5.5.0.tar.gz
|
|
"
|