blob: aa9335b62db3a3e90e4e95960b5e1f14a5901828 (
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
54
55
56
57
58
59
60
|
#Maintainer: Evert Vorster <evorster@gmail.com>
pkgname=vegastrike-engine-git
pkgver=rev.15607
pkgrel=1
pkgdesc="A spaceflight simulator in massive universe"
arch=('i686' 'x86_64')
url="https://www.vega-strike.org"
license=('GPL-3.0-only')
depends=('boost-libs' 'python' 'freeglut' 'gtk3' 'libvorbis' 'openal' 'sdl2' 'glu')
#optdepends=('vegastrike-data: original dataset')
makedepends=('git' 'cmake' 'boost')
provides=('vegastrike-engine')
conflicts=('vegastrike-engine')
#install=$pkgname.install
#Options to make debugging easier
#options=(!makeflags debug !strip)
source=('git+https://github.com/vegastrike/Vega-Strike-Engine-Source'
)
sha1sums=('SKIP'
)
pkgver() {
cd "${srcdir}"/Vega-Strike-Engine-Source
echo "rev.$(git rev-list --count HEAD)"
}
prepare(){
echo "Prepare section"
cd "${srcdir}"/Vega-Strike-Engine-Source
### Git operations for testing various branches
#git checkout -b stephengtuggy-fix/index_out_of_bounds_2025-01-11 master
#git pull https://github.com/stephengtuggy/Vega-Strike-Engine-Source.git fix/index_out_of_bounds_2025-01-11
#git checkout master
#git merge --no-ff stephengtuggy-fix/index_out_of_bounds_2025-01-11
##
# git pull origin master
# git checkout master
# git merge origin/task_fix_969
cd ..
mkdir -p build
}
build(){
# export CC=gcc-12 CXX=g++-12
cd build
cmake ../Vega-Strike-Engine-Source/ \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DINSTALL_GTEST=OFF \
-DUSE_GTEST=OFF \
-DENABLE_PIE=ON
make
}
package() {
make -C build DESTDIR="${pkgdir}" install
rm -rf ${pkgdir}/usr/include
rm -rf ${pkgdir}/usr/lib
}
|