mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
759 B
Bash
22 lines
759 B
Bash
|
# $Id: PKGBUILD 34544 2009-04-10 03:16:32Z eric $
|
||
|
# Maintainer: arjan <arjan@archlinux.org>
|
||
|
# Contributed by Sarah Hay <sarahhay@mb.sympatico.ca>
|
||
|
|
||
|
pkgname=lincity
|
||
|
pkgver=1.12.1
|
||
|
pkgrel=3
|
||
|
pkgdesc="LinCity is an SVGALIB (Linux only) and X based city/country simulation game for Linux and other Unix platforms (Solaris, FreeBSD, HP_UX, AIX, SCO and IRIX)."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://lincity.sourceforge.net/"
|
||
|
license=('GPL2')
|
||
|
depends=('libxext' 'libsm')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/lincity/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('cda964325bc041993bbefba297faf42b')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|