32 lines
798 B
Bash
32 lines
798 B
Bash
# Template build file for 'libuv'
|
|
pkgname=libuv
|
|
version=1.9.1
|
|
revision=1
|
|
wrksrc="${pkgname}-v${version}"
|
|
short_desc="Multi-platform support library with a focus on asynchronous I/O"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="BSD/ISC"
|
|
build_style="gnu-configure"
|
|
hostmakedepends="automake libtool pkg-config"
|
|
homepage="http://libuv.org/"
|
|
distfiles="http://dist.libuv.org/dist/v${version}/libuv-v${version}.tar.gz"
|
|
checksum=e83953782c916d7822ef0b94e8115ce5756fab5300cca173f0de5f5b0e0ae928
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libuv-devel_package() {
|
|
depends="libuv>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|