mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
42 lines
984 B
Bash
42 lines
984 B
Bash
# Maintainer: ugjka <ugis.germanis@gmail.com>
|
|
|
|
pkgname=freeorion
|
|
pkgver=0.4.5
|
|
pkgrel=3
|
|
pkgdesc="turn-based space empire and galactic conquest (4X) computer game"
|
|
arch=('x86_64')
|
|
url="https://github.com/freeorion/freeorion/"
|
|
license=('GPL2')
|
|
depends=('boost-libs' 'python2' 'sdl2' 'libvorbis' 'glew' 'libtiff' 'libjpeg-turbo' 'openal' 'hicolor-icon-theme' 'freetype2')
|
|
makedepends=('boost' 'cmake')
|
|
install=freeorion.install
|
|
conflicts=('gigi')
|
|
replaces=('gigi')
|
|
source=("https://github.com/freeorion/freeorion/releases/download/v${pkgver}/FreeOrion_v${pkgver}_2015-09-01.f203162_Source.tar.gz"
|
|
'freeorion.install')
|
|
md5sums=('706b8e9ab2ee29575a927e6f1c772d61'
|
|
'bdbd69c55fa91add1f8b17ad7f23ee6d')
|
|
|
|
prepare() {
|
|
cd $srcdir/src-tarball
|
|
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd $srcdir/src-tarball/build
|
|
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
..
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/src-tarball/build
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|