d09e32ad28
Lynx have better GPM support and no locale issues.
19 lines
362 B
Bash
19 lines
362 B
Bash
#!/bin/bash
|
|
|
|
# $Id$
|
|
|
|
set -e
|
|
cd $PKGDIR
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc/lynx \
|
|
--datadir=/usr/share/doc/lynx-2.8.6 \
|
|
--with-zlib \
|
|
--with-bzlib \
|
|
--with-screen=ncursesw \
|
|
--enable-locale-charset
|
|
make
|
|
make install-full
|
|
chgrp -v -R root /usr/share/doc/lynx-2.8.6/lynx_doc
|
|
|
|
exit
|