Files
ports/main/libmicrohttpd/spkgbuild
2023-10-14 13:01:31 +00:00

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
}