desktop/0ad/PKGBUILD

150 lines
5.4 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgbase=0ad
pkgname=($pkgbase $pkgbase-debug $pkgbase-data)
pkgver=alpha_7
_pkgver=r10288-alpha
pkgrel=1
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
screenshot=http://www.wildfiregames.com/0ad/images/news_images/dynamic-borders.jpg
arch=('i686' 'x86_64')
url="http://wildfiregames.com/0ad"
depends=('boost-libs' 'curl' 'devil' 'enet' 'gamin' 'libogg' 'libpng' 'libvorbis' 'libxml2' 'mesa'
'nasm' 'openal' 'sdl' 'zip' 'zlib' 'nvidia-texture-tools')
makedepends=('boost' 'cmake')
changelog=ChangeLog
source=(http://downloads.sourceforge.net/project/zero-ad/releases/$pkgbase-$_pkgver-unix-build.tar.xz
http://downloads.sourceforge.net/project/zero-ad/releases/$pkgbase-$_pkgver-unix-data.tar.xz)
md5sums=('234f623b5fd576907da5a7314d6c61e9'
'f870ff620667d6c40a4809e28a80eeb5')
build() {
cd $srcdir/$pkgbase-$_pkgver/build/workspaces
# NOTE: These sed commands are not likely to be changed between releases, like most patches.
sed -i \
's/unix_names = { "boost_signals-mt", "boost_filesystem-mt", "boost_system-mt" },/unix_names = { "boost_signals", "boost_filesystem", "boost_system" },/g' \
$srcdir/$pkgbase-$_pkgver/build/premake/extern_libs.lua
sed -i \
's/export HOSTTYPE="$HOSTTYPE"/export HOSTTYPE="$CARCH"/g' \
./update-workspaces.sh
# Atlas disabled because it requires GTK.
./update-workspaces.sh \
--disable-atlas \
--with-system-enet \
--with-system-nvtt
cd $srcdir/$pkgbase-$_pkgver/build/workspaces/gcc
CONFIG=Release make
CONFIG=Debug make
}
# This script might change between releases. It install the content of binaries/system/ depending
# on the type of build, release or debug.
install_0ad() {
AFILES="libatlas libengine libgraphics libgui liblowlevel libmocks_real libmocks_test libnetwork libscriptinterface libsimulation2"
if [ "$1" == "Debug" ]
then # Debug.
# Install .a files.
for FILENAME in $AFILES
do
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/${FILENAME}_dbg.a $pkgdir/usr/share/$pkgbase/system/${FILENAME}_dbg.a
done
# Install libCollada.
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/libCollada_dbg.so $pkgdir/usr/share/$pkgbase/system/libCollada_dbg.so
# Install libmozjs185-ps.
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/libmozjs185-ps-debug.so.1.0 $pkgdir/usr/share/$pkgbase/system/libmozjs185-ps-debug.so.1.0
# Install main binary.
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/pyrogenesis_dbg $pkgdir/usr/share/$pkgbase/system/pyrogenesis_dbg
else # Release.
# Install .a files.
for FILENAME in $AFILES
do
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/${FILENAME}.a $pkgdir/usr/share/$pkgbase/system/${FILENAME}.a
done
# Install libCollada.
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/libCollada.so $pkgdir/usr/share/$pkgbase/system/libCollada.so
# Install libmozjs185-ps.
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/libmozjs185-ps-release.so.1.0 $pkgdir/usr/share/$pkgbase/system/libmozjs185-ps-release.so.1.0
# Install main binary.
install -D $srcdir/$pkgbase-$_pkgver/binaries/system/pyrogenesis $pkgdir/usr/share/$pkgbase/system/pyrogenesis
fi
}
package_0ad() {
license=('GPL2' 'custom:MIT') # source/ licenses.
depends=('boost-libs' 'curl' 'devil' 'enet' 'gamin' 'libogg' 'libpng' 'libvorbis' 'libxml2' 'mesa'
'nasm' 'openal' 'sdl' 'zip' 'zlib' '0ad-data')
cd $srcdir/$pkgbase-$_pkgver
install_0ad Release
# Execution script:
install -d $pkgdir/usr/bin/
local scriptname="${pkgbase}"
echo "#!/bin/sh" > $pkgdir/usr/bin/$scriptname
echo "cd /usr/share/0ad/system" >> $pkgdir/usr/bin/$scriptname
echo "./pyrogenesis $*" >> $pkgdir/usr/bin/$scriptname
chmod +x $pkgdir/usr/bin/$scriptname
# Desktop Integration.
install -D ./build/resources/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
install -D ./build/resources/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
# Legal.
install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgbase/license.txt
}
package_0ad-debug() {
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game (debug version)"
license=('GPL2' 'custom:MIT') # source/ licenses.
depends=('boost-libs' 'curl' 'devil' 'enet' 'gamin' 'libogg' 'libpng' 'libvorbis' 'libxml2' 'mesa'
'nasm' 'openal' 'sdl' 'zip' 'zlib' '0ad-data')
cd $srcdir/$pkgbase-$_pkgver
install_0ad Debug
# Execution script:
install -d $pkgdir/usr/bin/
local scriptname="${pkgbase}-debug"
echo "#!/bin/sh" > $pkgdir/usr/bin/$scriptname
echo "cd /usr/share/$pkgbase/system" >> $pkgdir/usr/bin/$scriptname
echo "./pyrogenesis_dbg $*" >> $pkgdir/usr/bin/$scriptname
chmod +x $pkgdir/usr/bin/$scriptname
# Legal.
install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgbase-debug/license.txt
}
package_0ad-data() {
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game (data files)"
arch=('any')
license=('GPL2' 'CCPL-by-sa') # binary/data/ licenses.
cd $srcdir/$pkgbase-$_pkgver
install -d $pkgdir/usr/share/$pkgbase
cp -r $srcdir/$pkgbase-$_pkgver/binaries/data $pkgdir/usr/share/$pkgbase/
# Legal.
install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgbase-data/license.txt
}