blob: 75d8137244c2fe40caff6d261c2f9d7557dd342c (
plain)
1 # Description: The man page suite used to read most of the documentation for Linux
2 # URL: http://primates.ximian.com/~flucifredi/man/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4
5 name=man
6 version=1.6e
7 release=1
8 source=(http://primates.ximian.com/~flucifredi/man/$name-$version.tar.gz \
9 makewhatis $name-$version.patch)
10
11 build() {
12 cd $name-$version
13 patch -p1 < ../$name-$version.patch
14 ./configure -prefix=/usr \
15 -confdir=/etc \
16 -mandir=/usr/man \
17 -compatibility_mode_for_colored_groff \
18 +lang none \
19 -default
20 make
21 make PREFIX=$PKG install
22 install -D -m 755 ../makewhatis $PKG/etc/cron/daily/makewhatis
23 }
|