blob: 3ce8f648f509d947594bc4f014677d90593414c4 (
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
46
47
48
|
# Maintainer: Axel McLaren <scm(at)axml(dot)uk>
pkgname=keepmenu
pkgver=1.4.2
pkgrel=1
pkgdesc="dmenu/rofi frontend for KeePass databases"
arch=('any')
url="https://github.com/firecat53/keepmenu"
license=('GPL3')
depends=('python' 'python-pykeepass' 'python-pynput')
makedepends=('python-build' 'python-setuptools' 'python-installer' 'python-wheel' 'python-hatchling' 'python-hatch-vcs')
optdepends=('dmenu: dmenu backend'
'bemenu: bemenu backend'
'wmenu: wmenu backend'
'rofi: rofi backend'
'wofi: wofi backend'
'yofi: yofi backend'
'tofi: tofi backend'
'xdotool: required for typing non-U.S. Unicode characters'
'wtype: required for typing non-U.S. Unicode characters'
'ydotool: required for typing non-U.S. Unicode characters'
'pinentry: secure passphrase entry')
source=(${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz)
sha256sums=('2fb13c0e04649dfe647e7537963d3274811b09bcbb10e84ed1985fb70d057191')
install=${pkgname}.install
prepare() {
cd "${pkgname}-${pkgver}"
sed -i "s:^\(fallback-version = \).*:\1\"${pkgver}\":" pyproject.toml
}
build() {
cd "${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${pkgname}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 keepmenu.1 "${pkgdir}/usr/share/man/man1/keepmenu.1"
}
|