diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 23:29:58 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 23:29:58 +0100 |
commit | 7ff38024bec68fe70fb6eec0f5cd16188507558f (patch) | |
tree | d9f366b28b7d31ddbe3057669474f58962541a68 /repo/core/man-db.xibuild | |
parent | 76a1447eb1599f23165806b4ead10c5294039d05 (diff) |
added all lfs packages
Diffstat (limited to 'repo/core/man-db.xibuild')
-rw-r--r-- | repo/core/man-db.xibuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/core/man-db.xibuild b/repo/core/man-db.xibuild new file mode 100644 index 0000000..92ce361 --- /dev/null +++ b/repo/core/man-db.xibuild @@ -0,0 +1,22 @@ +#!/bin/bash + +DEPS=(bash gdbm zlib groff libpipeline less) + +SOURCE=http://download.savannah.nongnu.org/releases/man-db/man-db-2.9.4.tar.xz +DESC="A utility for reading man pages" + +build () { + ./configure --prefix=/usr + ./configure --prefix=/usr \ + --docdir=/usr/share/doc/man-db-2.9.4 \ + --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 DESTDIR=$PKG_DEST install +} |