2019-07-25 00:48:55 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-malloc0returnsnull
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
2021-07-06 05:45:37 -06:00
|
|
|
|
|
|
|
# Remove library documentation.
|
|
|
|
# False positive.
|
|
|
|
# shellcheck disable=2115
|
|
|
|
rm -rf "$1/usr/share"
|