summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 50e9ab0f3eb214b35be7f49688dd4e4a5e0993e4 (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
# 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-git
pkgver=1.6.02_1747
pkgrel=1 
pkgdesc="Unofficial X-Ray Engine port for Linux from the OpenXRay team (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=(git gcc cmake libglvnd libjpeg6-turbo ncurses pcre2 pcre)
depends=(glew sdl2 openal crypto++ freeimage libogg libtheora libvorbis lzo lzop libjpeg-turbo)
conflicts=(openxray openxray-dev)
source=(xray-16::git+https://github.com/OpenXRay/xray-16.git#branch=dev)
md5sums=('SKIP')

pkgver() {
    cd "$srcdir/xray-16"
    printf 1.6.02_1747_"$(git rev-parse --short HEAD)"
}

prepare(){
    cd "$srcdir/xray-16"
    git submodule update --init --recursive
#    git submodule init
#    git submodule update
}

build() {
    rm -fr "$srcdir/xray-16/bin"
    mkdir "$srcdir/xray-16/bin"
    cd "$srcdir/xray-16/bin"
    cmake .. -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_INSTALL_LIBDIR=lib
#        -DCMAKE_BUILD_TYPE=Debug
#        -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/"
}