34 lines
862 B
Bash
34 lines
862 B
Bash
# Template file for 'libuv'
|
|
pkgname=libuv
|
|
version=1.35.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config"
|
|
short_desc="Multi-platform support library with a focus on asynchronous I/O"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="MIT, CC-BY-SA-4.0"
|
|
homepage="https://libuv.org/"
|
|
changelog="https://raw.githubusercontent.com/libuv/libuv/v1.x/ChangeLog"
|
|
distfiles="https://github.com/libuv/libuv/archive/v${version}.tar.gz"
|
|
checksum=ff84a26c79559e511f087aa67925c3b4e0f0aac60cd8039d4d38b292f208ff58
|
|
|
|
LDFLAGS="-pthread"
|
|
|
|
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"
|
|
}
|
|
}
|