blob: 33783d9368aa0a79c63a4d6d6f3ce065a12fc61f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Octopus118 <idlansdowne at gmail dot com>
pkgname=python-bloom
pkgver=0.14.3
pkgrel=1
pkgdesc="Bloom is a release automation tool."
arch=('any')
url="https://github.com/ros-infrastructure/bloom"
license=('BSD')
depends=('python' 'python-empy3' 'python-rosdep' 'python-vcstool')
makedepends=('python-build' 'python-installer' 'python-wheel')
source=("$pkgname::git+https://github.com/ros-infrastructure/bloom.git#tag=$pkgver")
sha256sums=('e973b02ff76d0230d274acd77fc1bcae0f36e51bb69f22a8849f55dc2087a27f')
build() {
cd "$pkgname"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|