# Description: Support library with a focus on asynchronous I/O
# URL: https://libuv.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu

name=libuv
version=1.44.2
release=1
source=(https://dist.libuv.org/dist/v$version/$name-v$version.tar.gz)

build() {
	cd $name-v$version

	./autogen.sh
	./configure --prefix=/usr
	make
	make DESTDIR=$PKG install
}