CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
man-db: updated to 2.8.3
[crossrootfs.git] / man-db / Pkgfile
CommitLineData
2f2aa78b
VM
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# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on: libpipeline
6
7name=man-db
a74ca7ec 8version=2.8.3
2f2aa78b
VM
9release=1
10source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz \
11 mandb.cron)
12
13build() {
14 cd $name-$version
15
42a40b6d
VM
16 export libpipeline_CFLAGS="$CFLAGS -I$CLFS/usr/include"
17 export libpipeline_LIBS="$LIBS -L$CLFS/usr/lib -lpipeline"
2f2aa78b
VM
18
19 ./configure --build=$CHOST \
20 --host=$CTARGET \
21 --prefix=/usr \
2f2aa78b
VM
22 --libexecdir=/usr/lib/$name \
23 --disable-setuid \
24 --disable-nls
25
26 make
27 make DESTDIR=$PKG install
2f2aa78b 28
69cad3a2 29 rm -r $PKG/usr/lib/tmpfiles.d
2f2aa78b 30
69cad3a2
VM
31 install -d $PKG/var/cache/man
32 install -D -o root -g root -m 0755 $SRC/mandb.cron $PKG/etc/cron/daily/mandb
2f2aa78b 33}