54 lines
1.8 KiB
Bash
54 lines
1.8 KiB
Bash
# Template file for 'arcan'
|
|
pkgname=arcan
|
|
version=0.5.4.5
|
|
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.0-or-later"
|
|
homepage="https://arcan-fe.com/"
|
|
distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
|
|
checksum="0d35c85a121fc550aa3a0fe70f1941f9e347bd90855a2d2208106bbcc19791c3"
|
|
|
|
# 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="LuaJIT-devel ffmpeg-devel harfbuzz-devel liblzma-devel
|
|
libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel
|
|
tesseract-ocr-devel vlc-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
|
|
}
|
|
}
|