blob: e069a8a4a2cff0c0e5e85ad16e0410b815994ac6 (
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
|
# Maintainer: Joe Davison <joe@davison.tech>
pkgname=openenroth-git
pkgver=r1740.67f04ebd2
pkgrel=3
pkgdesc="Open source engine reimplementation of Might & Magic 6, 7, and 8"
arch=('x86_64')
url="https://github.com/OpenEnroth/OpenEnroth"
license=('LGPL-3.0')
depends=('sdl2' 'openal' 'zlib' 'ffmpeg')
makedepends=('git' 'cmake' 'python')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/OpenEnroth/OpenEnroth.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/OpenEnroth"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/OpenEnroth"
cmake -B build -S . \
-DCMAKE_INSTALL_PREFIX='/usr'
cmake --build build
}
package() {
cd "$srcdir/OpenEnroth"
# Right now, the cmake installer for OE is broken and so installing with cmake --install doesn't work.
# We'll manually move the executable for now
# DESTDIR="$pkgdir" cmake --install build
install -d "${pkgdir}/usr/share/games/mm7/shaders"
install -m 644 resources/shaders/* "${pkgdir}/usr/share/games/mm7/shaders"
install -D -m 755 "build/OpenEnroth" \
"$pkgdir/usr/bin/OpenEnroth"
}
|