CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
2f32b255a3faac9c53545ba7f2feb45b1b65a055
[crossrootfs.git] / man-db / Pkgfile
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
7 name=man-db
8 version=2.7.6
9 release=1
10 source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz \
11 mandb.cron)
12
13 build() {
14 cd $name-$version
15
16 export libpipeline_CFLAGS="$CFLAGS -I$CLFS/usr/include"
17 export libpipeline_LIBS="$LIBS -L$CLFS/usr/lib -lpipeline"
18
19 ./configure --build=$CHOST \
20 --host=$CTARGET \
21 --prefix=/usr \
22 --libexecdir=/usr/lib/$name \
23 --disable-setuid \
24 --disable-nls
25
26 make
27 make DESTDIR=$PKG install
28
29 rm -r $PKG/usr/lib/tmpfiles.d
30
31 install -d $PKG/var/cache/man
32 install -D -o root -g root -m 0755 $SRC/mandb.cron $PKG/etc/cron/daily/mandb
33 }