blob: f5ed9593f28289055359f49ba180094f0fcb1e35 (
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
|
#Maintainer: Evert Vorster <evorster@gmail.com>
pkgname=vegastrike-release-git
_pkgname=vegastrike
pkgver=v0.8.1.beta1.rev.11497
pkgrel=1
pkgdesc="Vega Strike - Upon the Coldest Sea. Latest Release of game Assets"
arch=('any')
url="https://www.vega-strike.org"
license=('GPL')
depends=('expat' 'vegastrike-engine')
optdepends=()
makedepends=('git' 'cmake')
provides=('vegastrike')
conflicts=('vegastrike')
#install=$pkgname.install
#options=(!makeflags debug !strip)
source=('git+https://github.com/vegastrike/Assets-Production#branch=0.8.x')
sha1sums=('SKIP')
pkgver() {
cd "${srcdir}"/Assets-Production
echo "$(git describe --tags --exact-match| tr -s "-" ".").rev.$(git rev-list --count HEAD)"
}
prepare(){
echo "Prepare section"
#Patches section
cd ${srcdir}/Assets-Production/
#git apply ../../19.patch
}
build(){
cmake -DCMAKE_INSTALL_PREFIX=/usr "${srcdir}"/Assets-Production/CMakeLists.txt
}
package() {
mkdir -p "${pkgdir}"
make -C "${srcdir}" DESTDIR="${pkgdir}" install
}
|