opt/libuv/Pkgfile

17 lines
362 B
Plaintext
Raw Normal View History

2020-06-25 18:36:58 +02:00
# Description: Support library with a focus on asynchronous I/O
2021-02-15 15:14:33 +01:00
# URL: https://libuv.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2020-06-25 18:36:58 +02:00
name=libuv
2021-07-20 09:10:42 +02:00
version=1.42.0
2020-06-25 18:36:58 +02:00
release=1
source=(https://dist.libuv.org/dist/v$version/$name-v$version.tar.gz)
build() {
2021-02-15 15:14:33 +01:00
cd $name-v$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2020-06-25 18:36:58 +02:00
}