void-packages/srcpkgs/arcan/template

56 lines
1.9 KiB
Bash

# Template file for 'arcan'
pkgname=arcan
version=0.5.4.4
revision=1
build_style=cmake
build_wrksrc=src
short_desc="Combined display server, multimedia framework and game engine"
maintainer="Piraty <piraty1@inbox.ru>"
license="GPL-2"
homepage="https://arcan-fe.com/"
distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
checksum="42d2fab2fb5d1b0b80b673335de14e131aa684bbad7f62c80693510a4fab71c2"
# the _lwa part of the build relies on a patched openAL implementation
# that is statically linked
_versionOpenal=0.5.4
distfiles+=" https://github.com/letoram/openal/archive/${_versionOpenal}.tar.gz>openal_arcan.${_versionOpenal}.tar.gz"
checksum+=" 3a50a87c05b67c466a868cc77f8dc7f9cfc9466aeeafcd823daca0d108c504da"
only_for_archs="i686 i686-musl x86_64 x86_64-musl"
configure_args=" -DDISTR_TAG='Void Linux'
-DCMAKE_BUILD_TYPE=Release -DBUILD_TAG='release' -DSTATIC_SQLITE3=Off
-DSTATIC_OPENAL=Off -DSTATIC_FREETYPE=Off
-DVIDEO_PLATFORM=egl-dri -DENABLE_SIMD=On -DENABLE_LTO=Off"
makedepends="libgbm libGL libdrm-devel MesaLib-devel libEGL LuaJIT-devel
freetype-devel sqlite-devel libusb-devel libxkbcommon-devel harfbuzz-devel
libopenal-devel vlc-devel ffmpeg-devel bzip2-devel liblzma-devel
libvncserver-devel $(vopt_if tesseract tesseract-ocr-devel)"
build_options="tesseract"
desc_option_tesseract="Enable support for OCR via tesseract"
build_options_default="tesseract"
post_extract() {
# provide patched openAL
ln -s ${XBPS_BUILDDIR}/openal-${_versionOpenal} ${XBPS_BUILDDIR}/arcan-${version}/external/git/openal
}
post_install() {
# need suid for drmMaster, dropped immediately after open+master
chmod u+s ${DESTDIR}/usr/bin/arcan
}
arcan-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/lib/*.so
vmove usr/lib/*.a
vmove usr/lib/pkgconfig
vmove usr/include
}
}