mirror of
https://github.com/outbackdingo/ports.git
synced 2026-04-08 03:10:52 +00:00
16 lines
382 B
Plaintext
16 lines
382 B
Plaintext
# description: A small C library that is supposed to make it easy to run an HTTP server as part of another application.
|
|
# depends: libgcrypt gnutls curl
|
|
|
|
name=libmicrohttpd
|
|
version=0.9.77
|
|
release=2
|
|
source="https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-$version.tar.gz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG/ install
|
|
}
|