blob: 2a33f4692995f1e8180c52801d99c9d022a827b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Alex Henrie <alexhenrie24@gmail.com>
pkgname=hexabyte
pkgver=0.8.7
pkgrel=1
pkgdesc='A modern, modular, and robust TUI hex editor'
arch=('any')
url='https://github.com/thetacom/hexabyte'
license=('GPL3')
depends=('python-hilbertcurve' 'python-linkify-it-py' 'python-munch' 'python-textual' 'python-toml')
makedepends=('python-poetry' 'python-wheel')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('4f9b4b15cf2eac0db276110cee4b7462d617c3cf57234c33d8e3de4bd37db251')
build() {
cd "$pkgname-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|