blob: 579f42e8fefed66701723fa8e0589e1731483a94 (
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
|
# Contributor: chip_exe
# https://aur.archlinux.org/packages/openxray-git/
# <openxray@yahoo.com>
# Official discord of the project channel https://discord.gg/sjRMQwv
pkgname=openxray
_tag=2088
pkgver=1.6.02_$_tag
pkgrel=1
pkgdesc="Unofficial X-Ray Engine port for Linux from the OpenXRay team, stable version (originally developed by GSC Game World)"
arch=('x86_64')
url="https://github.com/OpenXRay/xray-16"
license=('custom:Custom 3-сlause BSD')
install="info.install"
makedepends=(gcc git cmake libglvnd libjpeg6-turbo ncurses pcre2 pcre)
depends=(glew sdl2 openal crypto++ liblockfile freeimage libogg libtheora libvorbis lzo lzop libjpeg-turbo)
conflicts=(openxray-git openxray-dev)
source=(xray-16::git+https://github.com/OpenXRay/xray-16.git#tag=$_tag-august-2023-rc1)
md5sums=('SKIP')
prepare() {
cd "$srcdir/xray-16"
git submodule update --init --recursive
# git submodule init
# git submodule update
}
build() {
cd "$srcdir/xray-16"
rm -fr bin
mkdir "$srcdir/xray-16/bin"
cd "$srcdir/xray-16/bin"
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
# -DMEMORY_ALLOCATOR=standard
make
}
package() {
cd "$srcdir/xray-16/bin"
make DESTDIR="${pkgdir}/" install
rm -rf "${pkgdir}/usr/lib/mimalloc-1.6"
mkdir -p "${pkgdir}/usr/share/licenses/$pkgname/"
cp "$srcdir/xray-16/License.txt" "${pkgdir}/usr/share/licenses/$pkgname/"
}
|