vp-build/srcpkgs/libnfnetlink/template

28 lines
894 B
Bash

# Template file for 'libnfnetlink'
pkgname=libnfnetlink
version=1.0.1
revision=4
build_style=gnu-configure
short_desc="Low-level library for netfilter kernel/userspace communication"
maintainer="Orphaned <orphan@voidlinux.eu>"
license="GPL-2.0-only"
homepage="http://www.netfilter.org/projects/libnfnetlink/index.html"
distfiles="http://www.netfilter.org/projects/${pkgname}/files/${pkgname}-${version}.tar.bz2"
checksum=f270e19de9127642d2a11589ef2ec97ef90a649a74f56cf9a96306b04817b51a
pre_configure() {
sed -e "/#include <linux\/netlink.h>/i #include <stdint.h>" \
-i ${wrksrc}/include/libnfnetlink/libnfnetlink.h
find ${wrksrc} -type f -exec sed -e "s;u_int;uint;g" -i "{}" \;
}
libnfnetlink-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" -- development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove usr/lib/pkgconfig
}
}