# Contributor: chip_exe # https://aur.archlinux.org/packages/openxray-git/ # # Official discord of the project channel https://discord.gg/sjRMQwv pkgname=openxray _tag=730 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 intel-tbb 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-july-preview) md5sums=('SKIP') prepare(){ cd "$srcdir/xray-16" 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 make } package() { cd "$srcdir/xray-16/bin" make DESTDIR="${pkgdir}/" install mkdir -p "${pkgdir}/usr/share/licenses/$pkgname/" cp "$srcdir/xray-16/License.txt" "${pkgdir}/usr/share/licenses/$pkgname/" }