blob: a509a506bcbcf4683d3d75f11d213f79c4528a2e (
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
|
# Maintainer: Hao Long <aur@esd.cc>
pkgname=python-runlike
_pkgname=runlike
pkgver=1.4.14
pkgrel=2
pkgdesc="Given an existing docker container, prints the command line necessary to run a copy of it"
arch=("any")
url="https://github.com/lavie/runlike"
license=('BSD-2-Clause-Views')
depends=(python python-click)
makedepends=(python-build python-installer python-poetry-core)
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
b2sums=('0ac93e6ea98f81c69e6f3aaeac614fe3295cd76580548dfcfc991b9b87f962fe4c9eb20c8b80e2e42e87859bbdc38fc50ce4b8251d7509754f6cf3a28bc294ba')
build() {
cd ${_pkgname}-${pkgver}
python -m build --wheel --no-isolation
}
package() {
cd ${_pkgname}-${pkgver}
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt
}
|