From fbf9168bc6df50836e7fa6d2df2ba65fb2d27126 Mon Sep 17 00:00:00 2001 From: Ulrich Schreiner Date: Wed, 28 Jul 2021 13:01:16 +0200 Subject: [PATCH] initial commit --- .SRCINFO | 12 ++++++++++++ .gitignore | 1 + Makefile | 6 ++++++ PKGBUILD | 17 +++++++++++++++++ 4 files changed, 36 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..048b92573998 --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..5cec5e58d964 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +steampipe-* diff --git a/Makefile b/Makefile new file mode 100644 index 000000000000..60ca7a8b4f30 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +srcinfo: + makepkg --printsrcinfo > .SRCINFO + +integrity: + rm -rf cloudctl-linux-* + makepkg -g diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..e44137603647 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Ulrich Schreiner + +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" +}