blob: 15fea639cfafbf6afbddee6bfdfe71f8a649bab5 (
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
|
# Maintainer:
pkgname=libcrafter-git
pkgver=1.0
pkgrel=11
pkgdesc="Libcrafter is a high level library for C++ designed to create and decode network packets"
arch=(x86_64)
url="https://github.com/TETRX/local-dns-dump"
license=('GPL')
depends=()
makedepends=('git' 'make' 'gcc>=10' 'autoconf')
source=("git+$url#branch=master")
md5sums=('SKIP')
build() {
cd local-dns-dump
git submodule init
git submodule update
}
package() {
cd "local-dns-dump"
make DESTDIR="$pkgdir" libcrafter
}
|