blob: 3f4a36a5ce386c4e761378d761a13aa10204a620 (
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, jue at crux dot nu
4 # Depends on: openssl zlib expat
5
6 name=elinks
7 version=20150225
8 release=2
9 source=(http://crux.nu/files/distfiles/$name-$version.tar.xz)
10
11 build () {
12 cd $name-$version
13
14 autoreconf -i
15
16 ./configure --prefix=/usr \
17 --mandir=/usr/man \
18 --sysconfdir=/usr/etc \
19 --enable-256-colors \
20 --enable-html-highlight \
21 --disable-nls \
22 --with-zlib \
23 --without-{x,bzlib,lua}
24
25 make
26 make DESTDIR=$PKG install
27
28 ln -s elinks $PKG/usr/bin/links
29 }
|