Date: Friday, August 17, 2018 @ 05:43:04
  Author: felixonmars
Revision: 331625

archrelease: copy trunk to testing-x86_64

Added:
  libuv/repos/testing-x86_64/
  libuv/repos/testing-x86_64/PKGBUILD
    (from rev 331624, libuv/trunk/PKGBUILD)

----------+
 PKGBUILD |   44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

Copied: libuv/repos/testing-x86_64/PKGBUILD (from rev 331624, 
libuv/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2018-08-17 05:43:04 UTC (rev 331625)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+
+pkgname=libuv
+pkgver=1.23.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=('d1622ea9c03661ce2dfa18e1725fc1bfdf3b16d7e40babc552dcc5b2f86d52f4dd81cac9bf89914024b11e4ed3671264dfcfba867cfa3b1a2206b89c59c95851')
+
+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
+}

Reply via email to