blob: 66de103e3e398851c568ebc66105cb5511e34b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Roman Kyrylych <roman@archlinux.org>
# Contributor: Michal Kaliszka <desmont@gmail.com>
# Contributor: Zsolt Varadi <sysop_xxl@fibermail.hu>
# Contributor: Holger Rauch < holger dot rauch at posteo dot de >
pkgname=tea-qt
pkgver=63.1.0
pkgrel=1
pkgdesc="Powerful text editor for Linux, *BSD, Windows, OS/2, Mac and Haiku OS with PDF and DJVU support"
arch=(x86_64)
url="https://tea.ourproject.org/"
license=(GPL3)
depends=(qt6-base hunspell )
makedepends=(cmake git)
optdepends=('poppler: open and search text in PDF files'
'djvulibre: open and search in DJVU')
source=("git+https://github.com/psemiletov/tea-qt.git#tag=${pkgver}")
sha512sums=('SKIP')
prepare() {
mkdir -p "${srcdir}/tea-qt/build"
}
build() {
cd "${srcdir}/tea-qt/build"
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_PDF=ON \
-DUSE_DJVU=ON
make
cd "${srcdir}/tea-qt/"
sed -i 's/tea %F/tea-qt %F/g' desktop/tea.desktop
}
package(){
cd "${srcdir}/tea-qt/build"
make DESTDIR="${pkgdir}" install
mv "${pkgdir}/usr/bin/tea" "${pkgdir}/usr/bin/tea-qt"
}
|