blob: aefdf308c8eb34b57e33d98f5bf6ddf4afe8784a (
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
32
33
|
# Maintainer: Kris NĂ³va <kris@nivenly.com>
pkgbase=libxpid
pkgname=(libxpid)
pkgver=v1.3.2
pkgrel=1
pkgdesc="Linux Process Scanning. (C Library). 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=(make clang cmake)
checkdepends=()
optdepends=()
backup=()
options=()
source=("git+https://github.com/kris-nova/xpid.git#tag=$pkgver")
sha256sums=('SKIP')
build() {
cd xpid
make DESTDIR="$pkgdir" purge
cd libxpid
./configure
cd build
make
}
package() {
depends=(libxpid)
cd xpid
cd libxpid/build
make DESTDIR="$pkgdir" install
}
|