summaryrefslogtreecommitdiff
path: root/repo/core/man-db.xibuild
blob: 92ce361e50add6a3c0a1beed33cf57ec4f612ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 
}