summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 16259ff01e20c95af52d3187e4db60a483f8b9b7 (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
# Maintainer: Sam Whited <sam@samwhited.com>
# Forked from buildkit-git by Victor <victor@xirion.net>

pkgname=buildkit
pkgver=0.6.2
pkgrel=1
pkgdesc='A toolkit for converting source code to build artifacts in an efficient, expressive and repeatable manner.'
arch=('any')
url="https://github.com/moby/buildkit"
license=('Apache')
provides=("${pkgname}")
conflicts=("${pkgname}")
depends=(docker)
makedepends=('git'
             'go>=1.12')
source=("https://github.com/moby/buildkit/archive/v${pkgver}.tar.gz")

sha256sums=('1eaf2c85c20d8da283e48548954484883354df66c6a4c2dc87bba7514a7ba99e')

build() {
  cd "$pkgname-${pkgver}"
  make
}

package() {
  cd "$pkgname-${pkgver}"

  make DESTDIR="$pkgdir/usr/" install
}

# vim: ts=2 sw=2 et: