void-packages/srcpkgs/fehQlibs/template
2020-03-29 15:11:19 +02:00

38 lines
841 B
Bash

# Template file for 'fehQlibs'
pkgname=fehQlibs
version=14
revision=2
build_style=gnu-makefile
short_desc="State-of-the-art C routines for Internet services"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="Public Domain"
homepage="http://www.fehcom.de/ipnet/qlibs.html"
distfiles="http://www.fehcom.de/ipnet/fehQlibs/fehQlibs-${version}.tgz"
checksum=1ea19a0172cc9826fcd7e0b44cc93f6b928c8144dc90452474d9980f1f57f074
disable_parallel_build=yes
post_extract() {
sed -i '/^CC=/d' configure
}
do_build() {
cat >conf-build <<EOF
CFLAGS='$CFLAGS -fPIC'
LIBDIR=$DESTDIR/usr/lib
HDRDIR=$DESTDIR/usr/include/fehQlibs
EOF
make CC="$CC" LDFLAGS= default
}
do_install() {
vmkdir usr/include/fehQlibs
vmkdir usr/lib
cp include/*.h ${DESTDIR}/usr/include/fehQlibs
cp lib* ${DESTDIR}/usr/lib
vdoc BUILD
vdoc VERSION
vlicense LICENSE
}