blob: 041e0f5d29c7e9669b338d0477e8887b772fe1df (
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
|
pkgname=fheroes2
pkgver=1.1.5
pkgrel=1
pkgdesc="Recreation of the Heroes of Might and Magic II game engine"
arch=('i686' 'x86_64' 'armv7h')
url="https://ihhub.github.io/fheroes2/"
license=('GPL-2.0-or-later')
depends=(
hicolor-icon-theme
sdl2_mixer
)
makedepends=(
cmake
gettext
ninja
)
optdepends=(
'curl: download demo version files (alternative to wget)'
'innoextract: extract game resources from installer package'
'python: extract animation resources from GOG CD image'
'wget: download demo version files (alternative to curl)'
'unzip: unpack demo version files'
)
conflicts=('fheroes2-git')
source=(
"$pkgname-$pkgver.tar.gz::https://github.com/ihhub/$pkgname/archive/$pkgver.tar.gz"
)
sha256sums=('b860e5cc0064d15f47e1b1e04b4c75bd8200084260da860632b61fa2899fcf83')
build() {
cd "$pkgname-$pkgver"
cmake -B build -G Ninja -S . \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
# build man page
make -C docs
}
package() {
cd "$pkgname-$pkgver"
DESTDIR="$pkgdir" cmake --install build
install -dm755 "$pkgdir/usr/share/fheroes2/maps"
install -Dm644 docs/fheroes2.6 "$pkgdir/usr/share/man/man6/fheroes2.6"
}
# vim:set ts=2 sw=2 et:
|