mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
619 B
Bash
22 lines
619 B
Bash
# $Id: PKGBUILD 28726 2009-03-01 22:19:55Z douglas $
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Maintainer: James Rayner <james@archlinux.org>
|
|
|
|
pkgname=crimson
|
|
pkgver=0.5.3
|
|
pkgrel=1
|
|
pkgdesc="Crimson Fields is a tactical war game in the tradition of Battle Isle"
|
|
arch=(i686 x86_64)
|
|
license=("GPL")
|
|
depends=('sdl_mixer' 'sdl_ttf' 'sdl_net')
|
|
source=(http://crimson.seul.org/files/$pkgname-$pkgver.tar.bz2 )
|
|
url="http://crimson.seul.org"
|
|
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('9e71bc8c12ddadf42136a3e07ae86a2c')
|