diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-08-12 10:30:50 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-08-12 10:30:50 +0200 |
commit | 8f16335443a322578274737c8d80ce557e4d2656 (patch) | |
tree | 947d42d781b409f72c9f0fa957d8796352f9b386 /package/libmicrohttpd | |
parent | 5212b6029108093bb3ac6d8386fd999fd00f2701 (diff) |
add xmbc package for raspberry-pi target
Diffstat (limited to 'package/libmicrohttpd')
-rw-r--r-- | package/libmicrohttpd/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/libmicrohttpd/Makefile b/package/libmicrohttpd/Makefile new file mode 100644 index 000000000..1f8d7734b --- /dev/null +++ b/package/libmicrohttpd/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= libmicrohttpd +PKG_VERSION:= 0.9.26 +PKG_RELEASE:= 1 +PKG_MD5SUM:= bdac9b62fa3080890f9ab44cf29749fc +PKG_DESCR:= a C library make it easy to run an HTTP server +PKG_SECTION:= libs +PKG_DEPENDS:= libgcrypt +PKG_BUILDDEP:= libgcrypt +PKG_URL:= http://www.gnu.org/software/libmicrohttpd/ +PKG_SITES:= ${MASTER_SITE_GNU:=libmicrohttpd/} + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBMICROHTTPD,libmicrohttpd,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_ARGS+= --with-libgcrypt-prefix=$(STAGING_DIR)/usr + +libmicrohttpd-install: + $(INSTALL_DIR) $(IDIR_LIBMICROHTTPD)/usr/lib + $(CP) $(WRKINST)/usr/lib/libmicrohttpd*.so* \ + $(IDIR_LIBMICROHTTPD)/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |