Added Drone CLI

This commit is contained in:
Hunter Wittenborn
2021-06-28 19:35:23 -05:00
commit 6fb995aa30
3 changed files with 59 additions and 0 deletions

16
PKGBUILD Normal file
View File

@@ -0,0 +1,16 @@
# Maintainer: Hunter Wittenborn <hunter@hunterwittenborn.com>
pkgname=drone-cli-bin
pkgver='1.3.0'
pkgrel=1
pkgdesc="Command Line Tools for Drone CI (Binary Release)"
arch=('x86_64')
license=('Apache-2.0')
url="https://github.com/drone/drone-cli"
source_x86_64=("${url}/releases/download/v${pkgver}/drone_linux_amd64.tar.gz")
sha256sums_x86_64=('d6953aa963c2c0b25911fb3d659b78b75060cd2acce53b0e9e16336a30c83706')
package() {
install -Dm 555 "${srcdir}/drone" "${pkgdir}/usr/bin/drone"
}