diff options
Diffstat (limited to 'community/libuv/PKGBUILD')
-rw-r--r-- | community/libuv/PKGBUILD | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/community/libuv/PKGBUILD b/community/libuv/PKGBUILD index 351e64973..a2490709f 100644 --- a/community/libuv/PKGBUILD +++ b/community/libuv/PKGBUILD @@ -1,15 +1,21 @@ -# $Id: PKGBUILD 109510 2014-04-15 09:35:38Z mtorromeo $ +# $Id: PKGBUILD 112017 2014-05-28 16:26:31Z mtorromeo $ # Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> pkgname=libuv -pkgver=0.11.24 +pkgver=0.11.25 pkgrel=1 pkgdesc="A new platform layer for Node.JS" arch=('i686' 'x86_64') url="https://github.com/joyent/libuv" license=('custom') depends=('glibc') -source=("https://github.com/joyent/libuv/archive/v$pkgver.tar.gz") +source=("https://github.com/joyent/libuv/archive/v$pkgver.tar.gz" + "inet_pton6.patch::https://github.com/joyent/libuv/compare/6d56e6e132717df13c7ed76e6cc3ee53105759be...4fac9427e4a652cdebf241803ce7443dd59a4451.patch") + +prepare() { + cd "$srcdir/$pkgname-$pkgver" + patch -p1 -i "$srcdir/inet_pton6.patch" +} build() { cd "$srcdir/$pkgname-$pkgver" @@ -38,4 +44,5 @@ package() { "$pkgdir/usr/share/doc/$pkgname/ChangeLog" } -sha256sums=('8e23517d37a8c820fc68fa250b7398f520c76e40250b8da2a2eca230eb7f3ab8') +sha256sums=('b95a3e5eca9554998b7423ee786205e52731e82e2d24cbbd4f65af763de542fb' + '655c98f10daf171ce736cea594b710a3f8d72f4da02613588eb9856e4bb36561') |