blob: 7e0f180a8cf98a33c915f5b36cf7a5b8fac428f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
set -e
# Uncomment for generic libraries
# cp -v configfsf.guess config.guess
# cp -v configfsf.sub config.sub
./configure --prefix=/usr \
--enable-cxx \
--disable-static \
--docdir=/usr/share/doc/gmp-"${VERSION}" &&
make &&
make html &&
make -j1 install &&
make -j1 install-html
|