pkgname=libuv pkgver=1.49.2 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') source=(https://dist.libuv.org/dist/v${pkgver}/${pkgname}-v${pkgver}.tar.gz) sha256sums=(8c10706bd2cf129045c42b94799a92df9aaa75d05f07e99cf083507239bae5a8) prepare() { cd ${pkgname}-v${pkgver} sh autogen.sh } build() { cd ${pkgname}-v${pkgver} local configure_args=( --disable-static ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}-v${pkgver} make DESTDIR=${pkgdir} install }