blob: 41de3bd6560ebce36a76457fc4d1652cdd5f4a58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Client game zone
# URL: http://www.ggzgamingzone.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libggz, expat
# Run on: libggz,expat
name=ggz-client-libs
version=0.0.14.1
release=1
source=(ftp://ftp.ibiblio.org/pub/mirrors/ggzgamingzone/ggz/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}
|