blob: a1bc15c914ec50f095afd1068939fbabb12a7b4b (
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"
|