Date: Tuesday, February 28, 2023 @ 08:36:59
Author: eworm
Revision: 469717
archrelease: copy trunk to testing-x86_64
Added:
libmicrohttpd/repos/testing-x86_64/
libmicrohttpd/repos/testing-x86_64/PKGBUILD
(from rev 469716, libmicrohttpd/trunk/PKGBUILD)
libmicrohttpd/repos/testing-x86_64/keys/
----------+
PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
Copied: libmicrohttpd/repos/testing-x86_64/PKGBUILD (from rev 469716,
libmicrohttpd/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-02-28 08:36:59 UTC (rev 469717)
@@ -0,0 +1,48 @@
+# 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.76
+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='https://www.gnu.org/software/libmicrohttpd/'
+license=('LGPL')
+depends=('gnutls')
+checkdepends=('curl')
+provides=('libmicrohttpd.so')
+validpgpkeys=('EA812DBEFA5A7EF17DA8F2C1460A317C3326D2AE' # Evgeny Grin
(Karlson2k) <[email protected]>
+ 'D8423BCB326C7907033929C7939E6BE1E29FC3CC') # Christian Grothoff
<[email protected]>
+source=("https://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('f0b1547b5a42a6c0f724e8e1c1cb5ce9c4c35fb495e7d780b9930d35011ceb4c'
+ '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
+}