24 lines
687 B
Plaintext
24 lines
687 B
Plaintext
# Description: Enhanced version of the links textmode WWW browser with frame/table support
|
|
# URL: http://elinks.or.cz/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: openssl, zlib
|
|
|
|
name=elinks
|
|
version=0.12-534bb38
|
|
release=1
|
|
source=(http://crux.s3.amazonaws.com/dist/$name-$version.tar.xz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--sysconfdir=/usr/etc \
|
|
--enable-256-colors \
|
|
--enable-html-highlight \
|
|
--disable-nls \
|
|
--without-{zlib,bzlib}
|
|
make
|
|
make DESTDIR=$PKG install
|
|
ln -s elinks $PKG/usr/bin/links
|
|
}
|