blob: a8c01e59979de887a19e025a115236dc1952a6d9 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
# Contributor: Jack Random <jack at random dot to>
# Contributor: Rasmus Steinke <rasi at xssn dot at>
# from aur/buku
# Maintainer: Pierre Ayoub (Drack) <pierreay@proton.me>
# Contributor: Ayush Agarwal <ayush at ayushnix dot com>
# Contributor: Ben Oliver <ben at bfoliver dot com>
# Contributor: Andy Weidenbaum <archbaum at gmail dot com>
# Contributor: John Jenkins <twodopeshaggy at gmail dot com>
# Contributor: Julian Paul Dasmarinas <julian.dasma at gmail dot com>
set -u
pkgname=buku
pkgname+='-git'
_pkgname="${pkgname%-git}"
pkgver=5.1.r4.ge232ac3
pkgrel=1
pkgdesc="Bookmark manager like a text-based mini-web"
arch=('any')
url="https://github.com/jarun/buku"
license=('GPL3')
depends=('ca-certificates'
'python-beautifulsoup4'
'python-cryptography'
'python-html5lib'
'python-urllib3')
#depends+=('python>=3.9' 'python-certifi')
makedepends=('python-setuptools'
'python-build'
'python-installer'
'python-wheel')
makedepends+=('git')
optdepends=('wl-clipboard: to copy text in wayland'
'xsel: to copy text in xorg'
'xclip: to copy text in xorg')
provides=("buku=${pkgver%%.r*}")
conflicts=('buku')
_srcdir="$pkgname-$pkgver"
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
md5sums=('9bacaefeb2314c27ebd68bda00ca1e5c')
sha256sums=('0f1a3e15f882fe9a0f8e550abae7388d3cb81d4718a1b4309dcf4363633cb7b1')
if :; then
_srcdir='buku'
source[0]='git+https://github.com/jarun/buku.git'
md5sums[0]='SKIP'
sha256sums[0]='SKIP'
pkgver() {
set -u
cd "${_pkgname}"
git describe --long | sed -e 's/\([^-]*-g\)/r\1/' -e 's/-/./g' -e 's:^v::g'
set +u
}
fi
build() {
local -; set -u
cd "${_srcdir}"
export PYTHONHASHSEED=0
python -m build --wheel --no-isolation
}
package() {
local -
set -u
cd "${_srcdir}"
python -m installer --destdir="$pkgdir" dist/*.whl
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
# "
rm -f "$pkgdir/usr/bin/bukuserver"
rm -rf "$pkgdir/$site_packages/bukuserver"
gzip -f buku.1
install -Dm644 auto-completion/fish/buku.fish "$pkgdir/usr/share/fish/vendor_completions.d/buku.fish"
install -Dm644 auto-completion/bash/buku-completion.bash "$pkgdir/usr/share/bash-completion/completions/buku"
install -Dm644 auto-completion/zsh/_buku "$pkgdir/usr/share/zsh/site-functions/_buku"
install -Dm644 buku.1.gz "$pkgdir/usr/share/man/man1/buku.1.gz"
install -Dm644 CHANGELOG "$pkgdir/usr/share/doc/buku/CHANGELOG"
install -Dm644 README.md "$pkgdir/usr/share/doc/buku/README.md"
}
set +u
|