blob: 2b6227c68aa245e26b7c4f561c010a9bcbf20741 (
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
|
# Maintainer: Jiri Pospisil <jiri@jpospisil.com>
pkgname=marcel
pkgver=0.30.4
pkgrel=1
pkgdesc='A modern shell'
url='https://github.com/geophile/marcel'
source=("https://github.com/geophile/marcel/archive/refs/tags/v$pkgver.tar.gz")
arch=('any')
depends=('python' 'python-dill' 'python-psutil')
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'python-setuptools'
)
license=('GPL-3.0-only')
b2sums=('58d003544ecd8ae81052019622ff16e761394dd76845ca1b6d616b9177bb31ce34ff4d8a76db6a90ae29029bd8476c1a8e1b6a18f9a42fbd2fd81e4653d174b4')
prepare() {
cd marcel-"$pkgver"
rm -rf 'test'
}
build() {
cd marcel-"$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd marcel-"$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|