PKGBUILDs/community/texstudio/PKGBUILD

53 lines
2.3 KiB
Bash
Raw Normal View History

2020-01-16 03:54:33 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
2016-01-06 04:52:11 +00:00
# Contributor: Clément DEMOULINS <clement@archivel.fr>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - ARM patch, use NO_CRASH_HANDLER=1 for AArch64
pkgname=texstudio
2020-01-18 19:53:38 +00:00
pkgver=2.12.22
2018-11-26 19:41:52 +00:00
pkgrel=1
2016-01-06 04:52:11 +00:00
pkgdesc="Integrated writing environment for creating LaTeX documents"
2017-12-01 14:46:17 +00:00
arch=('x86_64')
2016-01-06 04:52:11 +00:00
url="http://texstudio.sourceforge.net/"
license=('GPL')
2018-11-26 19:41:52 +00:00
depends=('poppler-qt5' 'qt5-svg' 'qt5-script' 'libxkbcommon-x11' 'hicolor-icon-theme' 'hunspell' 'quazip' 'desktop-file-utils')
2017-03-30 03:22:40 +00:00
makedepends=('qt5-tools' 'mercurial' 'imagemagick' 'librsvg')
2016-01-06 04:52:11 +00:00
optdepends=('evince: pdf reader'
2016-12-17 16:14:39 +00:00
'okular: alternate pdf reader')
2016-01-06 04:52:11 +00:00
replaces=('texmakerx')
2018-03-05 01:28:30 +00:00
source=("https://github.com/texstudio-org/texstudio/archive/${pkgver}.tar.gz"
2017-08-08 18:39:20 +00:00
fs54269.patch
2017-12-01 14:46:17 +00:00
fs56433.patch
2016-01-06 04:52:11 +00:00
texstudio-debughelper-arm-fix.patch)
2020-01-18 19:53:38 +00:00
sha512sums=('c589285d1fba00812583a3d58602a99e044eb4bcf6a84b939d00ad7fe4ba8f15788031361fc9b4cb8df19f8098911c437d1de5459c1736fa40888b88d13b10d1'
2017-08-08 18:39:20 +00:00
'247e85f668b06c8a2def4e7456f0ddc8d35c7990484c1c037f7cf43fdee91419b5df66e968ef1e0c637fe685722bbad9171bdd79fad7a10912ae329aff088b68'
2017-12-02 00:44:28 +00:00
'a098c45440077db6c137bbeeb76d266242b80d51c3721aed30987d22b3e381b2a490b685aff4897d203a17256c64a9254360e3ac6f962675ea4b9a575a29a808'
2019-12-27 16:50:32 +00:00
'c8a915846d355593c2ebd0c9ebd5dfa908c456a4a51c4d63f1f685efdf2ff763e68fdaa34ddfe602890f363486ed0b9be55e09112904f60fbd0de40a418947d3')
2016-01-06 04:52:11 +00:00
prepare() {
2018-11-26 19:41:52 +00:00
cd texstudio-${pkgver}/src
2017-08-08 18:39:20 +00:00
patch -Np1 < "${srcdir}"/fs54269.patch
2017-12-01 14:46:17 +00:00
patch -Np1 < "${srcdir}"/fs56433.patch
2019-12-27 16:50:32 +00:00
patch -Np2 < "${srcdir}"/texstudio-debughelper-arm-fix.patch
2016-01-06 04:52:11 +00:00
}
build() {
2018-03-05 01:28:30 +00:00
cd texstudio-${pkgver}
2016-01-06 04:52:11 +00:00
[[ $CARCH == "aarch64" ]] && EXTRA="NO_CRASH_HANDLER=1"
2018-07-07 01:35:18 +00:00
qmake-qt5 CONFIG-="debug" $EXTRA USE_SYSTEM_QUAZIP=1 USE_SYSTEM_HUNSPELL=1 texstudio.pro
2016-01-06 04:52:11 +00:00
make
}
package() {
2018-03-05 01:28:30 +00:00
cd texstudio-${pkgver}
2017-03-30 03:22:40 +00:00
make INSTALL_ROOT="${pkgdir}" install
for res in $(/bin/ls /usr/share/icons/hicolor | grep '[0-9]\+x[0-9]\+'); do
mkdir -p "${pkgdir}"/usr/share/icons/hicolor/${res}/apps
2018-11-19 13:26:16 +00:00
convert +set date:create +set date:modify -background none -density 1200 -resize ${res} \
2017-03-30 03:22:40 +00:00
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/texstudio.svg \
"${pkgdir}"/usr/share/icons/hicolor/${res}/apps/texstudio.png
done
2016-01-06 04:52:11 +00:00
}