lynx.paketlendi

This commit is contained in:
milisarge 2017-06-11 10:01:24 +03:00
parent dc95e59e87
commit 8a2aa42de3
1 changed files with 7 additions and 8 deletions

View File

@ -1,25 +1,24 @@
# Description: Metin tabanlı web tarayıcısı. # Description: Metin tabanlı web tarayıcısı.
# URL: http://lynx.isc.org/ # URL: http://lynx.isc.org/
# Packager: milisarge # Packager: milisarge
# Depends on: ncurses openssl zlib # Depends on:
name=lynx name=lynx
version=2.8.9 version=2.8.9dev.14
release=1 release=1
source=(http://invisible-island.net/datafiles/release/lynx-cur.tar.bz2) source=(http://invisible-island.net/datafiles/release/lynx-cur.tar.bz2)
build() { build() {
cd lynx${version//./-} cd lynx$version
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--disable-nls \ --enable-nls \
--enable-color-style \ --enable-color-style \
--enable-ipv6 \ --enable-ipv6 \
--with-ssl=/usr/lib \ --with-ssl=/usr/lib \
--with-zlib \ --with-zlib \
--enable-default-colors \
--with-screen=ncursesw --with-screen=ncursesw
make -s -j1
make make DESTDIR=$PKG install
make -j 1 DESTDIR=$PKG install
} }