summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a265df7b0223cbecd6c97afffe7957c65cd4c0cd (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/Debugger.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/debugger/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
}