blob: a4fbff1cb444cca32fea09370fac06dbefab3ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Lib reseau simple
# URL: http://www.gnetlibrary.org/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on:
name=gnet
version=2.0.8
release=1
group=app
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make prefix=$PKG/usr install
}
|