2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-08 00:42:28 +00:00
repo/core/gmp/build

17 lines
273 B
Plaintext
Raw Normal View History

2019-05-18 16:06:11 +00:00
#!/bin/sh -e
2019-07-13 08:37:24 +00:00
cp -v configfsf.guess config.guess
cp -v configfsf.sub config.sub
2019-05-18 16:06:11 +00:00
./configure \
--prefix=/usr \
--localstatedir=/var/state/gmp \
--enable-cxx \
2019-07-13 08:37:24 +00:00
--with-pic
2019-05-18 16:06:11 +00:00
make
make DESTDIR="$1" install
# Remove all info files.
rm -rf "$1/usr/share/info"