blob: bb2540db95d2229f4f2c64cdae5e033afe442f3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
NAME="links"
DESC="Web browser running in text mode only"
MAKEDEPS="make "
DEPS="bzip2 openssl libevent musl zlib zstd "
PKG_VER=2.25
SOURCE="http://links.twibright.com/download/links-$PKG_VER.tar.bz2"
build () {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man
--disable-javascript \
--disable-graphics \
--without-x \
--disable-nls
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|