texstudio: update to 2.12.14.

This commit is contained in:
Piraty 2018-06-08 15:18:53 +02:00 committed by Helmut Pozimski
parent b1f7c97c4e
commit 7a33e4d8dc
2 changed files with 6 additions and 14 deletions

View File

@ -1,12 +0,0 @@
--- src/debughelper.cpp
+++ src/debughelper.cpp
@@ -8,6 +8,9 @@
#ifndef __GLIBC__
#define NO_CRASH_HANDLER
#endif
+#ifdef __aarch64__
+#define NO_CRASH_HANDLER
+#endif
#ifndef NO_CRASH_HANDLER
#if (defined(x86_64) || defined(__x86_64__))

View File

@ -1,6 +1,6 @@
# Template file for 'texstudio'
pkgname=texstudio
version=2.12.12
version=2.12.14
revision=1
build_style=qmake
configure_args="$(vopt_if phonon PHONON=true)
@ -14,7 +14,7 @@ maintainer="Piraty <piraty1@inbox.ru>"
license="GPL-2.0-or-later"
homepage="https://texstudio.org/"
distfiles="https://github.com/texstudio-org/texstudio/archive/${version}.tar.gz"
checksum=5978daa806c616f9a1eea231bb613f0bc1037d7d2435ee5ca6b14fe88a2caa8c
checksum=61df71f368bbf21f865645534f63840fd48dbd2996d6d0188aa26d3b647fede0
build_options="phonon poppler"
desc_option_phonon="build with phonon support"
@ -24,3 +24,7 @@ build_options_default="phonon poppler"
if [ -n "$CROSS_BUILD" ]; then
hostmakedepends+=" ${makedepends}"
fi
case "$XBPS_TARGET_MACHINE" in
aarch64*) configure_args+=" NO_CRASH_HANDLER=true" ;;
esac