summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: be4c86f9719dd495fcf00cbed3c519fb25277189 (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
# Maintainer: aksr <aksr at t-com dot me>
pkgname=regoth-git
pkgver=0.1.409.r563.f1b3195
pkgrel=1
epoch=
pkgdesc="OpenSource-Reimplementation of the zEngine, used by the game 'Gothic'"
arch=('i686' 'x86_64')
url="https://github.com/REGoth-project/REGoth"
license=('GPLv3')
categories=()
groups=()
depends=('gcc>=6')
makedepends=('git' 'cmake')
optdepends=()
checkdepends=()
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
replaces=()
backup=()
options=()
changelog=
install="${pkgname%-*}".install
source=("$pkgname::git+https://github.com/REGoth-project/REGoth.git")
noextract=()
md5sums=('SKIP')

pkgver() {
  cd "$srcdir/$pkgname"
  printf "%s.r%s.%s" "$(git describe --tags | sed -E 's/([^-]*-g)/r\1/;s/-/./g;s/^nightly.//')" \
                     "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "$srcdir/$pkgname"
  git submodule update --init --recursive
  mkdir build
  cd build
  cmake -DCMAKE_BUILD_TYPE=Release ..
  make -j$(grep -c ^processor /proc/cpuinfo)
}

package() {
  cd "$srcdir/$pkgname/build/bin"
  mkdir -p $pkgdir/usr/{bin,share/${pkgname%-*}/}
  for i in REGoth altonegen openal-info makehrtf bsincgen; do
    install -Dm755 $i "$pkgdir/usr/share/${pkgname%-*}/$i"
  done
  ln -rs $pkgdir/usr/share/${pkgname%-*}/REGoth $pkgdir/usr/bin/REGoth
  cp -r shaders $pkgdir/usr/share/${pkgname%-*}/
  install -Dm644 ../../README.md $pkgdir/usr/share/doc/${pkgname%-*}/README.md
  install -Dm644 ../../LICENSE.md $pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE
}