void-packages/srcpkgs/libuev/template
2020-02-23 19:22:08 +01:00

35 lines
866 B
Bash

# Template file for 'libuev'
pkgname=libuev
version=2.3.1
revision=1
build_style=gnu-configure
hostmakedepends="automake libtool"
short_desc="Lightweight event loop library"
maintainer="Duncaen <duncaen@voidlinux.org>"
license="MIT"
homepage="https://github.com/troglobit/libuev"
changelog="https://github.com/troglobit/libuev/raw/master/ChangeLog.md"
distfiles="https://github.com/troglobit/libuev/archive/v${version}.tar.gz"
checksum=c9585ec5254d0deeff00ab42abf18771c869411b6552de6792b8167bc4a2ba5c
pre_configure() {
./autogen.sh
}
post_install() {
vlicense LICENSE
rm -f ${DESTDIR}/usr/share/doc/libuev/LICENSE
}
libuev-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/share/doc
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}