CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
ascii-invaders: initial import (verified compilation)
[attic/ports/opt-cross.git] / 0verkill / Pkgfile
CommitLineData
4fa7ecf1
VM
1# Description: 2D action deathmatch-like game in ASCII-ART
2# URL: http://artax.karlin.mff.cuni.cz/~brain/0verkill/
3# Maintainer: Jose V Beneyto, sepen at crux dot nu
4# Packager: Jose V Beneyto, sepen at crux dot nu
5# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
6# Depends on:
7
8name=0verkill
9version=0.16
10release=1
11source=(http://artax.karlin.mff.cuni.cz/~brain/$name/release/$name-$version.tgz \
12 $name-$version.patch)
13
14build() {
15 cd $name-$version
16 patch -p1 -i $SRC/$name-$version.patch
17 ./configure --build=$CHOST \
18 --host=$CTARGET \
19 --prefix=/usr
20 sed 's|gcc |$(CC) |g' -i Makefile
21 make CC="$CC" CFLAGS="$CFLAGS"
22 make DESTDIR=$PKG install
23}