blob: cf83af5fe098187fbef3e8a1fb2e976dedd63aee (
plain)
1 # Description: Support library with a focus on asynchronous I/O
2 # URL: https://libuv.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4
5 name=libuv
6 version=1.41.1
7 release=1
8 source=(https://dist.libuv.org/dist/v$version/$name-v$version.tar.gz)
9
10 build() {
11 cd $name-v$version
12 ./autogen.sh
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|