blob: 2889eea0e5d8db8a37377b401d92b3f0d8215661 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
description="The man page suite used to read most of the documentation for Linux."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://primates.ximian.com/~flucifredi/man/"
depends=()
name=man
version=1.6f
release=1
source=(http://www.ibiblio.org/pub/Linux/apps/doctools/$name/$name-$version.tar.gz makewhatis)
build ()
{
cd $name-$version;
./configure \
-prefix=$prefix \
-confdir=$sysconfdir \
-mandir=$mandir \
-compatibility_mode_for_colored_groff \
+lang none \
-default;
make ${CTARGET:+CC=$CTARGET-gcc};
make PREFIX=$PKG install;
install -D -m 755 $SRC/makewhatis $PKG/etc/cron/daily/makewhatis
}
|