blob: b85f8c65a578d69387152503231b943ec5edcc82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Contributor: Kim Scarborough <kim@scarborough.kim>
pkgname=treeline
pkgver=3.2.1
pkgrel=1
pkgdesc="Outliner and PIM which stores information in a tree structure"
arch=('any')
url="http://treeline.bellz.org/";
license=('GPL2')
depends=('python-lxml' 'python-pyqt6')
optdepends=('aspell' 'ispell' 'hunspell')
source=("https://github.com/doug-101/TreeLine/releases/download/v${pkgver}/treeline-${pkgver}.tar.gz"
"treeline.xml")
sha256sums=('a3a780066647fbfdf28d1f7f457cae180330aa143da3f2ef0034a1926da47f64'
'2b23717127a37888499bddf62042eddb800d58b10ec88f3f54a538c8e24b19d6')
package() {
install -Dm644 treeline.xml "${pkgdir}/usr/share/mime/packages/x-treeline.xml"
cd "${srcdir}/TreeLine"
python install.py -p /usr -b "${pkgdir}"
install -Dm644 treeline.desktop "${pkgdir}/usr/share/applications/treeline.desktop"
}
|