updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / lotr / PKGBUILD
blob50d760fa65dad0d8e73e109abd82d8e6e8db29e6
1 # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
2 # Contributor: Christoph Zeiler <rabyte*gmail>
4 pkgname=lotr
5 pkgver=0.6.5
6 pkgrel=1
7 pkgdesc='A free game engine for Interplays RPG "The Lord of the Rings"'
8 arch=('i686' 'x86_64')
9 url="http://www.wonderland.cz/lotr/"
10 license=('LGPL')
11 depends=('sdl_mixer' 'libxml2')
12 install=$pkgname.install
13 source=(http://download.wonderland.cz/$pkgname-$pkgver.tgz)
14 md5sums=('762f7e6954f99612124ae2fbc74841de')
16 build() {
17   cd $pkgname-$pkgver
19   sed 's|games/||g' -i lotr.h
21   export CFLAGS+=" -DFULLSCREEN"
23 # compile floppy version
24   make clean
25   make PREFIX=/usr CFLAGS="${CFLAGS}" || return 1
26   mv -f lotr lotr-floppy
28 # compile cd version
29   make clean
30   make PREFIX=/usr CFLAGS="${CFLAGS} -DCD_VERSION" || return 1
31   mv -f lotr lotr-cd
33 # compile demo version
34   make clean
35   make PREFIX=/usr CFLAGS="${CFLAGS} -DDEMO=1" || return 1
36   mv -f lotr lotr-demo
38 # install files
39   install -Dm755 lotr-floppy ${pkgdir}/usr/bin/lotr
40   install -m755 lotr-{cd,demo} ${pkgdir}/usr/bin/
41   install -d ${pkgdir}/usr/share/{doc,lotr/cd}
42   cp -rf doc/ ${pkgdir}/usr/share/doc/lotr/