blob: 5dcb61f9176c6b78606d9cc8ca8ca59a43c5bd10 (
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
|
# Maintainer: Marko Semet <marko10_000@mailbox.org>
pkgname=buildstream-plugins
pkgver=2.2.0
pkgrel=1
pkgdesc="A collection of plugins for the BuildStream project."
arch=(any)
url="https://buildstream.build"
license=('Apache')
depends=(
buildstream
# Programmes that are requered for the source plugins
bzr
git
patch
python-pip
python-requests
python-tomli # Replacement for “tomllib”
# Sources “cargo” and “docker” seam to not nead any programmes
)
makedepends=(cython python-packaging python-setuptools)
source=("git+https://github.com/apache/buildstream-plugins.git#tag=${pkgver}&commit=db71610b7ae9884f6d8cbe0d3cc5a1c657c19edb")
sha256sums=('SKIP')
build() {
cd buildstream-plugins
python setup.py build
}
package() {
cd buildstream-plugins
python setup.py install --root="$pkgdir/" --skip-build
}
|