summaryrefslogtreecommitdiff
path: root/repo/system/gmp.xibuild
blob: 8b056c11e8c5abc4990ae581aa805f564bcfc461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash

MAKEDEPS=(make )
DEPS=(bash procps-ng)

PKG_VER=6.2.1
SOURCE=https://gmplib.org/download/gmp/gmp-$PKG_VER.tar.xz
DESC="a collection of mathematical libraries"

prepare () {
    cp -v configfsf.guess config.guess
    cp -v configfsf.sub   config.sub
}

build () {

    ./configure --prefix=/usr --enable-cxx --disable-static --docdir=/usr/share/doc/gmp

    make
    make html
}

check () {
    make check 2>&1 | tee gmp-check-log
    awk '/# PASS:/{total+=$3} ; END{print total}' gmp-check-log
}

package() {
    make DESTDIR=$PKG_DEST install
    make DESTDIR=$PKG_DEST install-html
}