blob: d805b69488aeb55a138b83ee81a2146f0a565611 (
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
|
# Decription: Navigateur en mode texte
# URL: http://links.twibright.com/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: gpm
name=links
version=2.3pre1
release=1
source=(http://links.twibright.com/download/$name-$version.tar.bz2 )
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--enable-javascript \
--disable-graphics \
--without-x
make
make DESTDIR=$PKG install
}
|