# Maintainer: Massimiliano Torromeo pkgname=libuv pkgver=1.38.0 pkgrel=1 pkgdesc="Multi-platform support library with a focus on asynchronous I/O" arch=('x86_64') url="https://github.com/libuv/libuv" license=('custom') depends=('glibc' 'libnsl') makedepends=('python-sphinx') source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz") sha512sums=('da9af33ec17f46f2390661f84e942115c442e665cb63ba5637eb12d2cb0b034889e0d816f261abe7fff3b4d0b44ab8bb63c81f3ec1917325cf0ca93e01921641') build() { cd $pkgname-$pkgver ./autogen.sh ./configure --prefix=/usr make make man -C docs } check() { cd $pkgname-$pkgver make check } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install install -Dm644 LICENSE \ "$pkgdir"/usr/share/licenses/$pkgname/LICENSE install -Dm644 AUTHORS \ "$pkgdir"/usr/share/doc/$pkgname/AUTHORS install -Dm644 README.md \ "$pkgdir"/usr/share/doc/$pkgname/README.md install -Dm644 ChangeLog \ "$pkgdir"/usr/share/doc/$pkgname/ChangeLog install -Dm644 docs/build/man/libuv.1 \ "$pkgdir"/usr/share/man/man1/libuv.1 }