2006-02-23 15:26:10 +00:00
|
|
|
# Description: Enhanced version of the links textmode WWW browser with frame/table support
|
|
|
|
# URL: http://elinks.or.cz/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# Depends on: openssl, zlib
|
|
|
|
|
|
|
|
name=elinks
|
2012-10-31 17:49:32 +01:00
|
|
|
version=0.12pre6
|
2011-05-24 11:22:05 +02:00
|
|
|
release=1
|
2012-10-31 17:49:32 +01:00
|
|
|
source=(http://elinks.or.cz/download/$name-$version.tar.bz2)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
2008-09-22 15:48:59 +02:00
|
|
|
--mandir=/usr/man \
|
2006-02-23 15:26:10 +00:00
|
|
|
--sysconfdir=/usr/etc \
|
|
|
|
--enable-256-colors \
|
2011-05-24 11:22:05 +02:00
|
|
|
--enable-html-highlight \
|
2010-10-26 13:54:23 +02:00
|
|
|
--disable-nls \
|
|
|
|
--without-{zlib,bzlib}
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
ln -s elinks $PKG/usr/bin/links
|
|
|
|
}
|