blob: 4904ca515fe654c69109250fca3966a20b0718e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Kris NĂ³va <kris@nivenly.com>
pkgbase=xpid
pkgname=(xpid)
pkgver=v1.3.2
pkgrel=1
pkgdesc="Linux Process Scanning. (CLI Runtime). Find eBPF programs, containers, hidden pids. Like nmap for pids in the kernel."
arch=(x86_64)
url="https://github.com/kris-nova/xpid"
license=(MIT)
makedepends=(libxpid go make)
checkdepends=()
optdepends=()
backup=()
options=()
source=("git+https://github.com/kris-nova/xpid.git#tag=$pkgver")
sha256sums=('SKIP')
build() {
cd $pkgname
GO111MODULE=on
go mod vendor
go mod download
make compile
}
package() {
depends=(libxpid)
cd $pkgname
make DESTDIR="$pkgdir" install
}
|