blob: 0828a810f18fb99410491d2efe57c7ef2aa8ee31 (
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=(http://mirrors.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
}
|