blob: 62fb9bfc0878e2fe852e161e1232f349eca230b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=crane-bin
pkgver=3.6.1
pkgrel=1
pkgdesc='Lift containers with ease'
arch=('x86_64')
url="https://github.com/michaelsauter/crane"
license=('MIT')
provides=('crane')
source=("${pkgname}-${pkgver}::https://github.com/michaelsauter/crane/releases/download/v${pkgver}/crane_linux_amd64"
'LICENSE::https://raw.githubusercontent.com/michaelsauter/crane/master/LICENSE')
sha256sums=('3be0ef0615d3fbbeaefdc4a43b6baff787c329c4efcf19914371d0a22670f65d'
'2aeedce7ad8c94cb7ca12dc52001cbe398c1173bd0ce7f0d596a7c53429ddf28')
package() {
install -Dm755 "${srcdir}"/crane* "${pkgdir}/usr/bin/crane"
install -Dm644 "${srcdir}"/LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set ts=2 sw=2 et:
|