2017-04-04 13:00:31 +02:00
|
|
|
|
# Description: Metin tabanlı web tarayıcısı.
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://lynx.isc.org/
|
2017-04-04 13:00:31 +02:00
|
|
|
|
# Packager: milisarge
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# Depends on: ncurses openssl zlib
|
|
|
|
|
|
|
|
|
|
name=lynx
|
|
|
|
|
version=2.8.9
|
|
|
|
|
release=1
|
|
|
|
|
source=(http://invisible-island.net/datafiles/release/lynx-cur.tar.bz2)
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd lynx${version//./-}
|
|
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
--disable-nls \
|
|
|
|
|
--enable-color-style \
|
|
|
|
|
--enable-ipv6 \
|
|
|
|
|
--with-ssl=/usr/lib \
|
|
|
|
|
--with-zlib \
|
|
|
|
|
--with-screen=ncursesw
|
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
make -j 1 DESTDIR=$PKG install
|
|
|
|
|
}
|