mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 04:41:00 +01:00
initial commit
This commit is contained in:
commit
fbf9168bc6
4 changed files with 36 additions and 0 deletions
12
.SRCINFO
Normal file
12
.SRCINFO
Normal 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
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
steampipe-*
|
||||
6
Makefile
Normal file
6
Makefile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
srcinfo:
|
||||
makepkg --printsrcinfo > .SRCINFO
|
||||
|
||||
integrity:
|
||||
rm -rf cloudctl-linux-*
|
||||
makepkg -g
|
||||
17
PKGBUILD
Normal file
17
PKGBUILD
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue