repo/core/gmp/build

15 lines
239 B
Plaintext
Raw Normal View History

2019-05-18 16:06:11 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--localstatedir=/var/state/gmp \
--enable-cxx \
2019-07-13 08:16:20 +00:00
--with-pic \
--build=x86_64-pc-linux-musl
2019-05-18 16:06:11 +00:00
make
make DESTDIR="$1" install
# Remove all info files.
rm -rf "$1/usr/share/info"