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