net/vde2: add libvdeplug-pcap

This commit is contained in:
Lily Tsuru 2024-05-20 04:51:29 -04:00
parent 31326b27c3
commit b6077101bd
2 changed files with 37 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# modeco80/aur
Welcome!
Welcome to my AUR repository! This mostly contains stuff I need for other servers.

View File

@ -0,0 +1,36 @@
# Maintainer: Lily Tsuru <lily.modeco80@protonmail.ch>
_gitname="vdeplug_pcap"
_pkgname="libvdeplug-pcap"
pkgname="$_pkgname-git"
pkgver=r12.a90ef6e
pkgrel=1
pkgdesc="libpcap plugin for vdeplug4"
arch=('any')
url="https://github.com/virtualsquare/${_gitname}"
license=('LGPL')
groups=('virtualsquare')
depends=('vdeplug4')
makedepends=('git' 'cmake')
source=(
"git+$url.git"
)
options=(!makeflags)
sha256sums=(
'SKIP'
)
pkgver() {
cd "$_gitname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cmake -S$_gitname -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
make -C build ${MAKEFLAGS}
}
package() {
DESTDIR="$pkgdir/" make -C build install
}