mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Maintainer:
|
|
# Contributor: Eric Bélanger <eric@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - Redefined our CFLAGS and CXXFLAGS to remove -O2, and define -DNO_ASM.
|
|
# Optimization kills the builds, NO_ASM prevents it using asm that doesn't work for us.
|
|
# - Removed building and installing pdf docs, it always fails.
|
|
|
|
pkgname=cln
|
|
pkgver=1.3.6
|
|
pkgrel=4
|
|
pkgdesc="Class library for numbers"
|
|
arch=('x86_64')
|
|
url="https://www.ginac.de/CLN/"
|
|
license=('GPL')
|
|
depends=('gmp')
|
|
makedepends=('texlive-latex')
|
|
source=(https://www.ginac.de/CLN/${pkgname}-${pkgver}.tar.bz2)
|
|
sha256sums=('f492530e8879bda529009b6033e1923c8f4aae843149fc28c667c20b094d984a')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
if [ "$CARCH" = "aarch64" ]; then
|
|
export CFLAGS="-march=armv8-a -pipe -DNO_ASM"
|
|
export CXXFLAGS="-march=armv8-a -pipe -DNO_ASM"
|
|
elif [ "$CARCH" = "armv7h" ]; then
|
|
export CFLAGS="-march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 -pipe -DNO_ASM"
|
|
export CXXFLAGS="-march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 -pipe -DNO_ASM"
|
|
fi
|
|
./configure --prefix=/usr
|
|
make all html
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install install-html
|
|
}
|