blob: 1c70fc3cc15b18e365d1609cb98308be4274239a (
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
|
# Description: 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 \
--enable-graphics \
--with-fb --with-directfb
make
make DESTDIR=$PKG install
}
|