blob: 68074d7b8b491d085e6a709c1274c2158cff4701 (
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
|
# Maintainer: Ianis Vasilev <ianis@ivasilev.net>
pkgname=unicodeit-gtk
pkgver=1.2.2
pkgrel=2
pkgdesc="A GTK IME popup for entering symbols via (La)TeX"
url='https://github.com/v--/unicodeit-gtk'
arch=('any')
license=('Unlicense')
makedepends=(git python-build python-installer python-wheel)
depends=(gtk4 python python-gobject python-unicodeit python-setproctitle wtype)
source=("${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('65fcc15c87c68ebd3c28ea2390ebca1fe471c008f52ae14ec9a9d5be0f6b9c10')
_fullsrcdir() {
echo "${srcdir}/${pkgname}-${pkgver}"
}
build() {
cd "$(_fullsrcdir)"
python -m build --wheel --no-isolation
}
package() {
cd "$(_fullsrcdir)"
python -m installer --destdir="$pkgdir" dist/*.whl
install -D -m755 bin/unicodeit-gtk "$pkgdir/usr/bin/unicodeit-gtk"
install -D -m755 bin/unicodeit-gtk-server "$pkgdir/usr/bin/unicodeit-gtk-server"
}
|