blob: 302e00be7b5d0420d4e5bbf938cf508255b3da3c (
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
|
# 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=2.parabola1
pkgdesc="A libre engine reimplementation for Morrowind-based role-playing games, without nonfree Morrowind wizard installation"
arch=('i686' 'x86_64')
url="http://www.openmw.org"
license=('GPL3' 'MIT' 'custom')
depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 'unshield')
makedepends=('cmake' 'boost' 'doxygen')
source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz")
sha1sums=('a69aa56374c4e991950fa1b7bfec92ef790cbbed')
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:
|