blob: 4e34b98f8a08e1b5126832b4521284a71d7bf6d6 (
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
|
# Maintainer: JakobDev<jakobdev at gmx dot de>
# Contributor: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=jdtextedit
pkgver=11.2
pkgrel=1
pkgdesc="An advanced text editor"
arch=("any")
url="https://codeberg.org/JakobDev/jdTextEdit"
license=("GPL3")
depends=("python"
"python-pyqt6"
"python-qscintilla-qt6"
"python-chardet"
"python-requests"
"python-cchardet"
"python-editorconfig"
"python-charset-normalizer"
"python-jdtranslationhelper"
"python-pyenchant"
"python-lxml")
makedepends=("python-setuptools" "python-pip" "python-wheel" "qt5-tools" "python-sphinx" "python-sphinx_rtd_theme")
source=("${pkgname}-${pkgver}.tar.gz::https://codeberg.org/JakobDev/jdTextEdit/archive/${pkgver}.tar.gz" "distribution.json")
sha256sums=("fc66fa2058de33d3d0c1a0c0b6fe7e94a2572e11ac02165e15bee6c03e1206eb" "c0f33924bce00130cd94a64e65b633f2d633482e648388e91159eac33b712c13")
package() {
mv distribution.json "jdtextedit"
cd "jdtextedit"
python ./install.py --yes --no-deps --install-manpage --install-html-doc --prefix="${pkgdir}/usr" --distribution-file distribution.json
}
|