diff options
Diffstat (limited to 'chapter8/man-db.sh')
-rw-r--r-- | chapter8/man-db.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chapter8/man-db.sh b/chapter8/man-db.sh new file mode 100644 index 0000000..be0d139 --- /dev/null +++ b/chapter8/man-db.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +./configure --prefix=/usr \ + --docdir=/usr/share/doc/man-db-"${VERSION}" \ + --sysconfdir=/etc \ + --disable-setuid \ + --enable-cache-owner=bin \ + --with-browser=/usr/bin/lynx \ + --with-vgrind=/usr/bin/vgrind \ + --with-grap=/usr/bin/grap \ + --with-systemdtmpfilesdir= \ + --with-systemdsystemunitdir= + +make + +make -j1 install |