summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 35f35a76afcae40a5423586e844635a233f0cff2 (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
pkgname=hackernel
pkgver=1.7.5
pkgrel=1
pkgdesc="host intrusion detection and prevention system"
url="https://github.com/lanthora/hackernel"
license=('GPL')
arch=('x86_64' 'armv7h' 'aarch64')
source=(https://github.com/lanthora/hackernel/archive/refs/tags/v$pkgver.tar.gz)

sha256sums=('fbcea470ffc414703e39c0898546c46908c227ba358056153566712cbe933076')

depends=('dkms' 'libnl')
makedepends=('cmake' 'make' 'go' 'nlohmann-json')
backup=('etc/hackernel/telegram.yaml' 'etc/hackernel/web.yaml')

build() {
        cd "$pkgname-$pkgver"
        make arch-build
}

package() {
        cd "$pkgname-$pkgver"
        make DESTDIR="$pkgdir/" arch-install
}