summaryrefslogtreecommitdiff
path: root/libre/openmw/PKGBUILD
blob: 9026d569ef939a95ae3d5e265e76319a434cd43b (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
# Maintainer (Arch): Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor (Arch): Sandy Carter <bwrsandman@gmail.com>
# Maintainer: André Silva <emulatorman@parabola.nu>

pkgname=openmw
pkgver=0.40.0
pkgrel=5.parabola1
pkgdesc="A libre engine reimplementation for Morrowind-based role-playing games, without wizard installation support to install nonfree assets from Morrowind to run Morrowind"
arch=('i686' 'x86_64')
url="http://www.openmw.org"
license=('GPL3' 'MIT' 'custom')
depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 'unshield' 'libxt')
makedepends=('cmake' 'boost' 'doxygen')
source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz"
        "bullet-251.patch")
sha1sums=('a69aa56374c4e991950fa1b7bfec92ef790cbbed'
          'bef2eaf6135c58354395ef07b5ac07dbdd2387e3')

prepare() {
  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
  patch -Np1 < ${srcdir}/bullet-251.patch
}

build() {
  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
  cmake -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_BUILD_TYPE=Release \
        -DDESIRED_QT_VERSION=5 \
        -DBUILD_ESSIMPORTER=OFF \
        -DBUILD_WIZARD=OFF
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: