blob: 8aaf8d09e987c26de5a19084136a093bfb40b03c (
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
# Depends on:
name=elinks
version=0.11.7
release=1
source=(http://elinks.or.cz/download/$name-$version.tar.bz2)
build () {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/usr/etc \
--enable-256-colors \
--disable-nls
make
make DESTDIR=$PKG install
ln -s elinks $PKG/usr/bin/links
}
|