33 lines
812 B
Bash
33 lines
812 B
Bash
# Template file for 'libdill'
|
|
pkgname=libdill
|
|
version=2.9
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool"
|
|
short_desc="Structured concurrency library for C"
|
|
maintainer="Tai Chi Minh Ralph Eastwood <tcmreastwood@gmail.com>"
|
|
license="MIT"
|
|
homepage="http://libdill.org/"
|
|
distfiles="https://github.com/sustrik/libdill/archive/${version}.tar.gz"
|
|
checksum=8b6b679a1c0e3071a488905c51c21ea9fda7567f8744c33576074124d306202e
|
|
|
|
pre_configure() {
|
|
export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=?/}"
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libdill-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"
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|