diff options
Diffstat (limited to 'libre/openmw')
-rw-r--r-- | libre/openmw/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libre/openmw/PKGBUILD b/libre/openmw/PKGBUILD new file mode 100644 index 000000000..302e00be7 --- /dev/null +++ b/libre/openmw/PKGBUILD @@ -0,0 +1,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: |