Date: Thursday, December 7, 2017 @ 19:01:24
  Author: eworm
Revision: 273175

archrelease: copy trunk to community-testing-x86_64

Added:
  libmicrohttpd/repos/community-testing-x86_64/
  libmicrohttpd/repos/community-testing-x86_64/PKGBUILD
    (from rev 273174, libmicrohttpd/trunk/PKGBUILD)

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

Copied: libmicrohttpd/repos/community-testing-x86_64/PKGBUILD (from rev 273174, 
libmicrohttpd/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD                           (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-12-07 19:01:24 UTC (rev 273175)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin <[email protected]>
+# Maintainer: Norberto Lopes <[email protected]>
+# Contributor: Kao Dome <[email protected]>
+# Contributor: Dmitrij D. Czarkoff <[email protected]>
+# Contributor: Mathias Rohnstock <[email protected]>
+
+pkgname=libmicrohttpd
+pkgver=0.9.58
+pkgrel=1
+pkgdesc="a small C library that is supposed to make it easy to run an HTTP 
server as part of another application."
+arch=('x86_64')
+url="http://www.gnu.org/software/libmicrohttpd/";
+license=('LGPL')
+depends=('gnutls')
+checkdepends=('curl')
+validpgpkeys=('289FE99E138CF6D473A3F0CFBF7AC4A5EAC2BAF4') # Evgeny Grin 
(Karlson2k) <[email protected]>
+source=("https://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('7a11e1376c62ff95bd6d2dfe6799d57ac7cdbcb32f70bfbd5e47c71f373e01f3'
+            'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+    --prefix=/usr \
+    --disable-dependency-tracking \
+    --disable-examples \
+    --enable-curl \
+    --enable-https \
+    --enable-largefile \
+    --enable-messages \
+    --with-pic
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir" install
+}

Reply via email to