diff options
author | Matt Housh <jaeger@crux.ninja> | 2020-05-20 23:47:43 -0500 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2020-05-20 23:47:43 -0500 |
commit | 346a71dc2c48c3f265eabb70ed983b43720beb74 (patch) | |
tree | 0b9c4d3c23d418fd4c6fd39389e037dbb0fa18f6 /libmicrohttpd | |
parent | c8386d077e0a12bb17dab65d1daded158dd72070 (diff) | |
download | contrib-346a71dc2c48c3f265eabb70ed983b43720beb74.tar.gz contrib-346a71dc2c48c3f265eabb70ed983b43720beb74.tar.xz |
libmicrohttpd: initial import, version 0.9.70
Diffstat (limited to 'libmicrohttpd')
-rw-r--r-- | libmicrohttpd/.footprint | 14 | ||||
-rw-r--r-- | libmicrohttpd/.signature | 5 | ||||
-rw-r--r-- | libmicrohttpd/Pkgfile | 17 |
3 files changed, 36 insertions, 0 deletions
diff --git a/libmicrohttpd/.footprint b/libmicrohttpd/.footprint new file mode 100644 index 000000000..ef7b86940 --- /dev/null +++ b/libmicrohttpd/.footprint @@ -0,0 +1,14 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/microhttpd.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libmicrohttpd.la +lrwxrwxrwx root/root usr/lib/libmicrohttpd.so -> libmicrohttpd.so.12.55.0 +lrwxrwxrwx root/root usr/lib/libmicrohttpd.so.12 -> libmicrohttpd.so.12.55.0 +-rwxr-xr-x root/root usr/lib/libmicrohttpd.so.12.55.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libmicrohttpd.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/libmicrohttpd.3.gz diff --git a/libmicrohttpd/.signature b/libmicrohttpd/.signature new file mode 100644 index 000000000..ae0dfa174 --- /dev/null +++ b/libmicrohttpd/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3yECdshrQ0m1mHclUA7qthRK1oQ4YtU/bxp+yxb46+tgIamhgbfANi0rcfUdCaJgPsDKmGaOiXKISMsXZtoJtQs= +SHA256 (Pkgfile) = 2d0b99d7f00e2b00e6fb32fc0cb6f0049cd815b2090a52918c2d4459aaf2a299 +SHA256 (.footprint) = 62a6fa2b3a91b3ba223806badd39041b47a0e30eef16ad5447a69d19360b1d8b +SHA256 (libmicrohttpd-0.9.70.tar.gz) = 90d0a3d396f96f9bc41eb0f7e8187796049285fabef82604acd4879590977307 diff --git a/libmicrohttpd/Pkgfile b/libmicrohttpd/Pkgfile new file mode 100644 index 000000000..987ae4b32 --- /dev/null +++ b/libmicrohttpd/Pkgfile @@ -0,0 +1,17 @@ +# Description: A library for creating an embedded HTTP server +# URL: http://www.gnu.org/software/libmicrohttpd/ +# Maintainer: Matt Housh, jaeger at crux dot ninja + +name=libmicrohttpd +version=0.9.70 +release=1 +source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --disable-static + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share/info +} |