# Maintainer: jc_gargma # Maintainer (AUR): Dimitris Kiziridis # Contributor (AUR): Christian Krause ("wookietreiber") # # I maintain this because: # AUR version lacks additional optimization and hardening flags pkgname=freeorion pkgver=0.4.9 pkgrel=3 pkgdesc='Turn-based space empire and galactic conquest (4X) computer game' url='https://www.freeorion.org/' arch=('i686' 'x86_64') license=('GPL2') depends=('boost-libs' 'python2' 'sdl2' 'libvorbis' 'glew' 'openal' 'hicolor-icon-theme' 'freetype2') makedepends=('boost' 'cmake') provides=('freeorion') conflicts=('freeorion-git') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz) b2sums=('49a8cacbcaef5c42fab1bd994ab975c4bf4702f07c4affc97315abf04bac77be4eedc8ae9be4453765d76937aba44ecfc9d019efc2038c756355364230bb940d') build() { cd "${srcdir}/${pkgname}-${pkgver}" mkdir -p build cd "${srcdir}/${pkgname}-${pkgver}"/build # PIE breaks compiling export CFLAGS="$CFLAGS -O3 -fstack-protector-all -flto=4" export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all -flto=4" cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_LIBDIR=lib \ .. make } package() { cd "${srcdir}/${pkgname}-${pkgver}"/build make DESTDIR="${pkgdir}" install }