diff --git a/packages/devel/libmicrohttpd/build b/packages/devel/libmicrohttpd/build new file mode 100755 index 0000000000..cb924384af --- /dev/null +++ b/packages/devel/libmicrohttpd/build @@ -0,0 +1,22 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/build toolchain + +cd $PKG_BUILD +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --exec-prefix=/usr \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --enable-shared \ + --disable-static \ + --disable-curl \ + --disable-https \ + --with-libgcrypt-prefix=$SYSROOT_PREFIX/usr + +make + +$MAKEINSTALL diff --git a/packages/devel/libmicrohttpd/install b/packages/devel/libmicrohttpd/install new file mode 100755 index 0000000000..7e5d0c41de --- /dev/null +++ b/packages/devel/libmicrohttpd/install @@ -0,0 +1,7 @@ +#!/bin/sh + +. config/options + +mkdir -p $INSTALL/usr/lib + cp -PR $PKG_BUILD/src/daemon/.libs/*.so* $INSTALL/usr/lib + diff --git a/packages/devel/libmicrohttpd/url b/packages/devel/libmicrohttpd/url new file mode 100644 index 0000000000..918416af95 --- /dev/null +++ b/packages/devel/libmicrohttpd/url @@ -0,0 +1 @@ +ftp://sunsite.cnlab-switch.ch/mirror/gnu/libmicrohttpd/libmicrohttpd-0.4.5.tar.gz \ No newline at end of file