summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c26e6d36ada4be170d98229e0346a1842f494b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Andrej Marolt <andrej.marolt@gmail.com>
pkgname=openshift-source-to-image
_release=v1.1.3
_commit=ddb10f1
pkgver=1.1.3
pkgrel=1
pkgdesc="A tool for building/building artifacts from source and injecting into docker images"
arch=('i686' 'x86_64')
url="https://github.com/openshift/source-to-image"
license=('Apache')
install=${pkgname}.install
source=("https://github.com/openshift/source-to-image/releases/download/${_release}/source-to-image-${_release}-${_commit}-linux-amd64.tar.gz")
md5sums=('c125940730914217919641c4532db011')

build() {
    echo "Installing source-to-image"
}

package() {
    install -D -m755 $srcdir/s2i        $pkgdir/usr/bin/s2i
}