vp-build/srcpkgs/libmill/template

32 lines
748 B
Bash

# Template file for 'libmill'
pkgname=libmill
version=1.18
revision=2
build_style=gnu-configure
hostmakedepends="automake libtool"
short_desc="Go-style concurrency in C"
maintainer="Duncaen <duncaen@voidlinux.eu>"
license="MIT"
homepage="http://libmill.org/"
distfiles="https://github.com/sustrik/libmill/archive/${version}.tar.gz"
checksum=ff6903cd05f45c4cc050921d03201a93d2723ab59c480eb924f8f1ca8c6f0614
pre_configure() {
export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=?/}"
autoreconf -fi
}
post_install() {
vlicense COPYING
}
libmill-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.a
vmove usr/lib/*.so
}
}