summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bf17a7860095a98caf4bc14f98a6d42e5fc94799 (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-experimental
pkgver=1.95.7
pkgrel=1
pkgdesc="A collection of experimental BuildStream plugins."
arch=(any)
url="https://buildstream.build"
license=('LGPL')
depends=(
    buildstream
    # Programmes that are requered for the source plugins
    bazel
    git
    ostree
    python-arpy
    python-requests
    quilt
    # Sources “cargo” and “docker” seam to not nead any programmes
)
makedepends=(cython git python-packaging python-setuptools)
source=("git+https://gitlab.com/BuildStream/bst-plugins-experimental.git#tag=1.95.7&commit=f75cc11f1d345db09db4cb5b88e403c56587a3b3")
sha256sums=('SKIP')

build() {
  cd bst-plugins-experimental
  python setup.py build
}

package() {
  cd bst-plugins-experimental
  python setup.py install --root="$pkgdir/" --skip-build
}