blob: af0658f849025c0a43a0e251ee84004bea76c247 (
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
|
# Contributor: Michał Polański <michal@polanski.me>
# Maintainer: Michał Polański <michal@polanski.me>
pkgname=conmon
pkgver=2.0.9
pkgrel=0
pkgdesc="An OCI container runtime monitor"
url="https://github.com/containers/conmon"
arch="all"
license="Apache-2.0"
makedepends="glib-dev bash"
source="$pkgname-$pkgver.tar.gz::https://github.com/containers/conmon/archive/v$pkgver.tar.gz"
build() {
make
}
check() {
./bin/conmon --version
}
package() {
make install PREFIX=/usr DESTDIR="$pkgdir"
}
sha512sums="904275d6e116c15e1c373c7ee5d7d9f2cdb671f86c364bab24eb688cd618afacfd63ca5076fd5a67869b97cdbb226df8fac15f390a384e125d9007c0052ed847 conmon-2.0.9.tar.gz"
|