mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
799 B
Bash
31 lines
799 B
Bash
|
#
|
||
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=freeciv
|
||
|
pkgver=2.2.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="Multiplayer clone of Civilization™."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.freeciv.org/"
|
||
|
license=('GPL2')
|
||
|
depends=('bzip2' 'freetype2' 'readline' 'sdl_image')
|
||
|
changelog=ChangeLog
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('b324e3c59f029d0566482f584181a4b2')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man --enable-client=sdl --enable-shared
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|