desktop/odamex/PKGBUILD
Adrian Chaves Fernandez (Gallaecio) 0380a68758 Odamex 0.6.2
2012-12-15 22:27:46 +00:00

46 lines
1.3 KiB
Bash

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=odamex
pkgver=0.6.2
pkgrel=1
pkgdesc='A free client/server multiplayer engine for the classic FPS Doom.'
arch=('x86_64')
url='http://odamex.net/'
license=('GPL')
depends=('sdl_mixer')
provides=('doom')
categories=('games')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-src-$pkgver.tar.bz2")
md5sums=('02251fb367de5cefebba0895bb6ec6e0')
build() {
cd $srcdir/$pkgname-src-$pkgver
sed 's|getenv("DOOMWADPATH")|"/usr/share/doom"|g' -i {client,server}/src/d_main.cpp
mkdir -p build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
..
make
}
package() {
cd $srcdir/$pkgname-src-$pkgver/build
# make DESTDIR=$pkgdir install
install -Dm755 client/odamex $pkgdir/usr/bin/odamex
install -Dm755 server/odasrv $pkgdir/usr/bin/odasrv
cd ..
install -Dm644 odamex.wad $pkgdir/usr/share/doom/odamex.wad
install -Dm644 media/icon_odamex_96.png $pkgdir/usr/share/pixmaps/odamex.png
install -Dm644 media/icon_odasrv_96.png $pkgdir/usr/share/pixmaps/odasrv.png
install -Dm644 installer/arch/odamex.desktop $pkgdir/usr/share/applications/odamex.desktop
install -Dm644 installer/arch/odasrv.desktop $pkgdir/usr/share/applications/odasrv.desktop
}