blob: 2214d831bea04b588178c4d91ff6e30227a57b1e (
plain)
1 # Description: Enhanced version of the links textmode WWW browser with frame/table support
2 # URL: http://elinks.or.cz/
3 # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
4 # Depends on: openssl, zlib
5
6 name=elinks
7 version=0.11.5
8 release=1
9 source=(http://elinks.or.cz/download/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --mandir=/usr/man \
15 --sysconfdir=/usr/etc \
16 --enable-256-colors \
17 --disable-nls
18 make
19 make DESTDIR=$PKG install
20 ln -s elinks $PKG/usr/bin/links
21 }
|