blob: 9161a73d6bece00392e67735cc78c455c0ea73e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
DEPS=(gcc-libs sh)
SOURCE=https://gmplib.org/download/gmp/gmp-6.2.1.tar.lz
DESC="a collection of mathematical libraries"
build () {
./configure --prefix=/usr --enable-cxx --disable-static --docdir=/usr/share/doc/gmp
make
make html
make check 2>&1 | tee gmp-check-log
awk '/# PASS:/{total+=$3} ; END{print total}' gmp-check-log
make DESTDIR=$PKG_DEST install
make DESTDIR=$PKG_DEST install-html
}
|