initial commit

This commit is contained in:
Ulrich Schreiner 2021-07-28 13:01:16 +02:00
commit fbf9168bc6
No known key found for this signature in database
GPG key ID: EA0F166C78CE7CD8
4 changed files with 36 additions and 0 deletions

12
.SRCINFO Normal file
View file

@ -0,0 +1,12 @@
pkgbase = steampipe-bin
pkgdesc = Steampipe CLI
pkgver = 0.7.0
pkgrel = 1
url = https://github.com/turbot/steampipe
arch = x86_64
license = AGPL-3.0
provides = steampipe
source = steampipe-0.7.0-1.tgz::https://github.com/turbot/steampipe/releases/download/v0.7.0/steampipe_linux_amd64.tar.gz
md5sums = 2760d6e004814575e9462d1b567af1b4
pkgname = steampipe-bin

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
steampipe-*

6
Makefile Normal file
View file

@ -0,0 +1,6 @@
srcinfo:
makepkg --printsrcinfo > .SRCINFO
integrity:
rm -rf cloudctl-linux-*
makepkg -g

17
PKGBUILD Normal file
View file

@ -0,0 +1,17 @@
# Maintainer: Ulrich Schreiner <ulrich.schreiner@gmail.com>
pkgname=steampipe-bin
pkgver=0.7.0
pkgrel=1
pkgdesc='Steampipe CLI'
url='https://github.com/turbot/steampipe'
license=('AGPL-3.0')
arch=('x86_64')
provides=('steampipe')
source=("steampipe-$pkgver-$pkgrel.tgz::https://github.com/turbot/steampipe/releases/download/v$pkgver/steampipe_linux_amd64.tar.gz")
md5sums=('2760d6e004814575e9462d1b567af1b4')
package() {
tar xzf $srcdir/steampipe-$pkgver-$pkgrel.tgz
install -Dm 755 "$srcdir/steampipe" "$pkgdir/usr/bin/steampipe"
}