summaryrefslogtreecommitdiff
path: root/man-db/Pkgfile
blob: 723391a51802c5d23cb1a1c6077f6df412cae06d (plain)
    1 # Description: An implementation of the standard Unix documentation system accessed using the man command
    2 # URL: http://man-db.nongnu.org/
    3 # Maintainer: CRUX System Team, core-ports at crux dot nu
    4 # Depends on: zlib gdbm libpipeline
    5 
    6 name=man-db
    7 version=2.7.5
    8 release=1
    9 source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz \
   10         mandb.cron)
   11 
   12 build() {
   13     cd $name-$version
   14     ./configure --prefix=/usr \
   15         --libexecdir=/usr/lib/$name \
   16         --disable-setuid \
   17         --disable-nls
   18     make
   19     make DESTDIR=$PKG install
   20 
   21     #rm -r $PKG/usr/share
   22     rm -r $PKG/usr/lib/tmpfiles.d
   23 
   24     install -d $PKG/var/cache/man
   25     install -D -o root -g root -m 0755 $SRC/mandb.cron $PKG/etc/cron/daily/mandb
   26 }

Generated by cgit