1
0
forked from ports/contrib

libmicrohttpd: initial import, version 0.9.70

This commit is contained in:
Matt Housh 2020-05-20 23:47:43 -05:00
parent c8386d077e
commit 346a71dc2c
3 changed files with 36 additions and 0 deletions

14
libmicrohttpd/.footprint Normal file
View File

@ -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

5
libmicrohttpd/.signature Normal file
View File

@ -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

17
libmicrohttpd/Pkgfile Normal file
View File

@ -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
}