lynx: taken over maintainership

This commit is contained in:
Danny Rawlins 2007-11-16 13:00:40 +11:00
parent 9ddfe62ecf
commit 745f757ddb

View File

@ -1,7 +1,9 @@
# Description: Text-based web browser
# URL: http://lynx.isc.org/
# Maintainer: Mark Rosenstand, mark at borkware dot net
# Depends on: ncurses, openssl, zlib
# Description: Text-based web browser.
# URL: http://lynx.isc.org/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Mark Rosenstand, mark at borkware dot net
# Depends on: ncurses openssl zlib
# Optional: upx
name=lynx
version=2.8.6
@ -9,14 +11,25 @@ release=3
source=(http://lynx.isc.org/lynx$version/lynx$version.tar.bz2)
build() {
cd lynx${version//\./-}
cd lynx${version//./-}
./configure \
--prefix=/usr \
--disable-nls \
--with-ssl \
--enable-color-style \
--enable-ipv6 \
--with-ssl \
--with-zlib
make
make DESTDIR=$PKG install
# compress binary files if upx is installed to save disk space
if pkginfo -i |grep '^upx ' > /dev/null; then
(
cd $PKG/usr/bin
upx -9 lynx
)
fi
}