blob: dc08efc444f0d3dcbc4c1a4812adcbb0a39654bd (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | #!/bin/sh -e
./configure \
    --prefix=/usr \
    --enable-lib-only
make
make DESTDIR="$1" install
# Even when only installing libraries, the build system installs manual pages
# and documentation for the utilities.
rm -r "${1:?}/usr/share"
 |