diff --git a/libuv/trunk/PKGBUILD b/libuv/trunk/PKGBUILD index 7889b5776c8..bd67a5b9d6e 100644 --- a/libuv/trunk/PKGBUILD +++ b/libuv/trunk/PKGBUILD @@ -2,18 +2,19 @@ pkgname=libuv pkgver=1.40.0 -pkgrel=1 +pkgrel=2 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=('14a6880e636e9d046e1f4c86061d7ca5fe0cdae0efb0c6fec6b6ad03b17c626da479d6cc1ae84da281ec04a75e0d56fa99ef25164432cdb246cf59f0964a7e8b') +makedepends=('git' 'python-sphinx') +source=(git+https://github.com/libuv/libuv.git#tag=v${pkgver}?signed) +validpgpkeys=("94AE36675C464D64BAFA68DD7434390BDBE9B9C5") # Colin Ihrig +sha512sums=('SKIP') build() { - cd $pkgname-$pkgver + cd $pkgname ./autogen.sh ./configure --prefix=/usr make @@ -21,12 +22,12 @@ build() { } check() { - cd $pkgname-$pkgver + cd $pkgname make check } package() { - cd $pkgname-$pkgver + cd $pkgname make DESTDIR="$pkgdir" install