mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
52 lines
2.3 KiB
Bash
52 lines
2.3 KiB
Bash
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
# Contributor: Clément DEMOULINS <clement@archivel.fr>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - ARM patch, use NO_CRASH_HANDLER=1 for AArch64
|
|
|
|
pkgname=texstudio
|
|
pkgver=2.12.14
|
|
pkgrel=1
|
|
pkgdesc="Integrated writing environment for creating LaTeX documents"
|
|
arch=('x86_64')
|
|
url="http://texstudio.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('poppler-qt5' 'qt5-svg' 'qt5-script' 'libxkbcommon-x11' 'hicolor-icon-theme' 'hunspell' 'quazip' 'desktop-file-utils')
|
|
makedepends=('qt5-tools' 'mercurial' 'imagemagick' 'librsvg')
|
|
optdepends=('evince: pdf reader'
|
|
'okular: alternate pdf reader')
|
|
replaces=('texmakerx')
|
|
source=("https://github.com/texstudio-org/texstudio/archive/${pkgver}.tar.gz"
|
|
fs54269.patch
|
|
fs56433.patch
|
|
texstudio-debughelper-arm-fix.patch)
|
|
sha512sums=('fe2fe641a455425f87e28f3058f63df103823a97990365e3a3d67d14c4959a6e59db9205ce100f4ebbdb7c8a5c914b0514333b9b9537dd48053bf166e4326984'
|
|
'247e85f668b06c8a2def4e7456f0ddc8d35c7990484c1c037f7cf43fdee91419b5df66e968ef1e0c637fe685722bbad9171bdd79fad7a10912ae329aff088b68'
|
|
'a098c45440077db6c137bbeeb76d266242b80d51c3721aed30987d22b3e381b2a490b685aff4897d203a17256c64a9254360e3ac6f962675ea4b9a575a29a808'
|
|
'dcb5ce7cd3e83fc221903fa895e6c428c54ada7468e74bb0a3e6bfac01c9e9575e4780d300b67f44064f2d25e10dd1aef531b847cdee71fbfbe7337808a0c8f4')
|
|
|
|
prepare() {
|
|
cd texstudio-${pkgver}/src
|
|
patch -Np1 < "${srcdir}"/fs54269.patch
|
|
patch -Np1 < "${srcdir}"/fs56433.patch
|
|
patch -Np1 < "${srcdir}"/texstudio-debughelper-arm-fix.patch
|
|
}
|
|
|
|
build() {
|
|
cd texstudio-${pkgver}
|
|
[[ $CARCH == "aarch64" ]] && EXTRA="NO_CRASH_HANDLER=1"
|
|
qmake-qt5 CONFIG-="debug" $EXTRA USE_SYSTEM_QUAZIP=1 USE_SYSTEM_HUNSPELL=1 texstudio.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd texstudio-${pkgver}
|
|
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
|
|
convert +set date:create +set date:modify -background none -density 1200 -resize ${res} \
|
|
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/texstudio.svg \
|
|
"${pkgdir}"/usr/share/icons/hicolor/${res}/apps/texstudio.png
|
|
done
|
|
}
|