e13439bd57
libmill does quite a bit of stack trickery that triggers assertions when build with our default _FORTIFY_SOURCE=2
36 lines
807 B
Bash
36 lines
807 B
Bash
# Template file for 'libmill'
|
|
pkgname=libmill
|
|
version=1.6
|
|
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=30e87d0e7524ddbc2bd65835b14050452ff19d06dd95a7c7e7011fb0e578b28a
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
do_configure() {
|
|
export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=?/}"
|
|
${configure_script} ${configure_args}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|