summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d39b6384a1f81ce1fd9dc5650e7a79ae7c2d8f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75

# Maintainer: Pieter van der Kloet <pvdkloet@gmail.com>
pkgname=openmw-git
pkgver=20120131
pkgrel=1
pkgdesc="OpenMW is a open-source engine reimplementation for the role-playing game Morrowind."
arch=('i686' 'x86_64')
url="http://www.openmw.org"
license=('GPL3')

depends=('openal' 'ogre-1.7.2' 'bullet' 'ffmpeg' 'mpg123' 'libsndfile' 'qt')

makedepends=('git' 'cmake' 'boost')
install=$pkgname.install
conflicts=('openmw')

_gitroot="git://github.com/zinnschlag/openmw.git"
_gitname="openmw"

build() {
  msg "Connecting to GIT server...."

  if [ -d "$_gitname" ] ; then
    cd "$_gitname" && git pull origin
    git submodule update
    msg "The local files are updated."
  else
    cd "$srcdir"
    git clone "$_gitroot" "$_gitname"
    cd "$_gitname"
    git submodule update --init
    cd "$srcdir"
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."
  
  cmake -DCMAKE_INSTALL_PREFIX=/usr
  make
  
  # Install
  # There is currently no make install so we do this manually
 
  # Binaries
  install -d -m755 "$pkgdir"/usr/bin
  install -m755 openmw "$pkgdir"/usr/bin/
  install -m755 omwlauncher "$pkgdir"/usr/bin/
  install -m755 esmtool "$pkgdir"/usr/bin/

  # Config files
  # Replace resources location
  sed -i 's,resources=resources,resources=/usr/share/openmw/resources,' openmw.cfg.install || exit 1

  install -d -m755 "$pkgdir"/etc/openmw
  install -m644 openmw.cfg.install "$pkgdir"/etc/openmw/openmw.cfg
  install -m644 plugins.cfg "$pkgdir"/etc/openmw/

  # Stylesheet
  install -m644 launcher.qss "$pkgdir"/etc/openmw/
  ln -s -T /etc/openmw/launcher.qss "$pkgdir"/usr/bin/launcher.qss || exit 1

  # Desktop file and icon
  install -d -m755  "$pkgdir"/usr/share/applications
  install -m644 files/openmw.desktop "$pkgdir"/usr/share/applications/

  install -d -m755 "$pkgdir"/usr/share/pixmaps
  install -m644 apps/launcher/resources/images/openmw.png "$pkgdir"/usr/share/pixmaps/

  # Resources 
  install -d -m755 "$pkgdir"/usr/share/openmw
  cp -r resources "$pkgdir"/usr/share/openmw/ || exit 1
    
}