summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e1ad030927d549686f64cc6aaf99277c92c45072 (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
# Maintainer: ipochto <ipochto@gmail.com>

pkgname=war1gus-git
pkgver=3.1.3.r814.5181b59
pkgrel=1
pkgdesc="Warcraft1 Mod that allows you to play Warcraft1 with the Stratagus engine (development version)"
arch=("i686" "x86_64")
url="https://github.com/Wargus/war1gus"
license=('GPL')
depends=('stratagus-git' 'ffmpeg' 'innoextract' 'imagemagick')
makedepends=('git' 'cmake')

source=("${pkgname}::git://github.com/Wargus/war1gus.git")
md5sums=('SKIP')
provides=(${pkgname}
	  'war1gus')
conflicts=('war1gus')

pkgver() {
	cd "$srcdir/${pkgname}"
	dev_cycle=3.1.3
	printf "%s.r%s.%s" "${dev_cycle}" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd ${srcdir}

  cmake ${pkgname} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DGAMEDIR=/usr/bin -Bbuild

  make -C build
}

package()  {
  cd $srcdir/build
  make  DESTDIR=${pkgdir} install
}