blob: d51cd6e1408ee250faad46d5da9e8766e7750e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Slava Ganzin <slava.ganzin@gmail.com>
pkgname="strace-grace"
pkgver="0.0.1"
pkgrel=1
pkgdesc="grace is a tool for monitoring and annotating syscalls for a given process. It's essentially a lightweight strace, in Go, with colours and pretty output."
arch=("any")
url="https://github.com/liamg/grace"
license=("MIT")
provides=("grace")
source=("grace::https://github.com/liamg/grace/releases/download/v$pkgver/grace-linux-amd64")
md5sums=('e3d2cce335e3f0d0551080df61dc2345')
package() {
mkdir "$pkgdir/usr"
mkdir "$pkgdir/usr/bin"
install -m=777 "grace" "${pkgdir}/usr/bin"
}
|