blob: 6dc7b14544295342de24182907f3cb3683fe456f (
plain)
1 # Description: multi-platform support library with a focus on asynchronous I/O
2 # URL: https://github.com/libuv/libuv
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4
5 name=libuv
6 version=1.38.1
7 release=1
8 source=(https://github.com/libuv/libuv/archive/v$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12
13 ./autogen.sh
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|