37 lines
800 B
Bash
37 lines
800 B
Bash
# Template file for 'libmill'
|
|
pkgname=libmill
|
|
version=1.13
|
|
revision=1
|
|
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=8b27c819d5d850d9f770ce28f4ddcd89895799f96ca9d1a6e0f8a6fecb79e257
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
do_configure() {
|
|
export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=?/}"
|
|
./configure ${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
|
|
}
|
|
}
|