11 lines
281 B
Bash
11 lines
281 B
Bash
./configure --prefix=/usr \
|
|
--enable-cxx \
|
|
--disable-static \
|
|
--docdir=/usr/share/doc/gmp-6.3.0
|
|
make
|
|
make html
|
|
make check 2>&1 | tee gmp-check-log
|
|
awk '/# PASS:/{total+=$3} ; END{print total}' gmp-check-log
|
|
make install
|
|
make install-html
|