mirror of
https://github.com/archlinux/aur.git
synced 2026-02-10 15:29:38 +01:00
cnquery & cnspec 7.0.0-alpha1
This commit is contained in:
commit
4a79bf5f7b
2 changed files with 41 additions and 0 deletions
12
.SRCINFO
Normal file
12
.SRCINFO
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
pkgbase = cnspec
|
||||
pkgdesc = Cloud-Native Security and Policy Framework
|
||||
pkgver = 7.0.0_alpha1
|
||||
pkgrel = 1
|
||||
url = https://mondoo.com
|
||||
arch = x86_64
|
||||
license = MPL 2.0
|
||||
depends = cnquery
|
||||
source = https://releases.mondoo.com/cnspec/7.0.0-alpha1/cnspec_7.0.0-alpha1_linux_amd64.tar.gz
|
||||
sha256sums = aed27f4c7b335572ed0bf9671d3800ac4a366280ea8ba9867f4356a15b880e49
|
||||
|
||||
pkgname = cnspec
|
||||
29
PKGBUILD
Normal file
29
PKGBUILD
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Maintainer: Mondoo Inc <hello@mondoo.com>
|
||||
# Maintainer: Dominik Richter <dom@mondoo.com>
|
||||
# Maintainer: Patrick Münch <patrick@mondoo.com>
|
||||
#
|
||||
pkgname=cnspec
|
||||
orignalVersion="7.0.0-alpha1"
|
||||
pkgver="${orignalVersion/-/_}"
|
||||
pkgrel=1
|
||||
pkgdesc="Cloud-Native Security and Policy Framework "
|
||||
url="https://mondoo.com"
|
||||
license=('MPL 2.0')
|
||||
source=(
|
||||
"https://releases.mondoo.com/cnspec/${orignalVersion}/cnspec_${orignalVersion}_linux_amd64.tar.gz"
|
||||
)
|
||||
arch=('x86_64')
|
||||
depends=('cnquery')
|
||||
|
||||
sha256sums=('aed27f4c7b335572ed0bf9671d3800ac4a366280ea8ba9867f4356a15b880e49'
|
||||
)
|
||||
|
||||
|
||||
package() {
|
||||
install -dm755 ${pkgdir}/usr/bin
|
||||
cp ${srcdir}/$pkgname ${pkgdir}/usr/bin/.
|
||||
|
||||
|
||||
}
|
||||
|
||||
#vim: syntax=sh
|
||||
Loading…
Add table
Reference in a new issue