summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3bf4c3f86d413ac51eeaeae2d3f1b2460f2764e1 (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
34
# Contributor: Hubert Dej <hubert.dej@student.uj.edu.pl>
# Contributor: Katzper Michno  <katzper.michno@student.uj.edu.pl>
# Contributor: Maciej Matys <maciej.matys@student.uj.edu.pl>
# Contributor: Tomasz Mazur <tomasz.mazur@student.uj.edu.pl>
#
# Maintainer: Michał Pajda <m.pajda@student.uj.edu.pl>
# Maintainer: Michał Horodecki <michal.horodecki@student.uj.edu.pl>
# Maintainer: Dominik Matuszek <dominik.matuszek@student.uj.edu.pl>
# Maintainer: Kacper Topolski <kacper.topolski@student.uj.edu.pl>
pkgname=anteater
pkgver=0.0.1
pkgrel=1
pkgdesc="Tool for tracing program output and creating structured logs using plain text or html."
arch=('x86_64')
url="https://github.com/Student-Team-Projects/anteater.git"
license=('GPL-3.0-or-later')
depends=('libbpf' 'bpf' 'boost')
makedepends=('make' 'clang')
source=("debugger-2.0.1.zip::https://github.com/Student-Team-Projects/anteater/archive/refs/tags/v2.0.1.zip")
md5sums=("SKIP")
noextract=()

build() {
    cd "debugger-2.0.1"
    make build
}

package() {
    cd "debugger-2.0.1"
    mkdir -p $pkgdir/usr/bin
    cp bin/main $pkgdir/usr/bin/anteater
    chown root $pkgdir/usr/bin/anteater
    chmod 4755 $pkgdir/usr/bin/anteater
}