blob: 0931ee0eef89f2a5d2e1425509319dcac01f54b5 (
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=3
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 --sysconfdir=/usr/etc \
18 --enable-256-colors \
19 --enable-html-highlight \
20 --disable-nls \
21 --with-zlib \
22 --without-{x,bzlib,lua}
23
24 make CFLAGS="$CFLAGS -Wno-all"
25 make DESTDIR=$PKG install
26
27 ln -s elinks $PKG/usr/bin/links
28 }
|