forked from kiss-community/repo
15 lines
239 B
Bash
Executable File
15 lines
239 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--localstatedir=/var/state/gmp \
|
|
--enable-cxx \
|
|
--with-pic \
|
|
--build=x86_64-pc-linux-musl
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|