Commit 66d364f4 authored by Davide Viti's avatar Davide Viti Committed by Peter Korsgaard
Browse files

mongoose: provide libmongoose.a static library



The package provides a webserver and, eventually, a library: this is
what Centos, among other distros, is doing.

[Peter: correct install -D invocation]
Signed-off-by: default avatarDavide Viti <d.viti@infosolution.it>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent ad75a7f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ config BR2_PACKAGE_MONGOOSE
	help
	  Mongoose is a small and easy to use web server

	  https://github.com/valenok/mongoose
	  https://github.com/cesanta/mongoose

comment "mongoose needs a toolchain w/ threads, largefile"
	depends on BR2_USE_MMU
+12 −1
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ MONGOOSE_VERSION = 5.3
MONGOOSE_SITE = $(call github,cesanta,mongoose,$(MONGOOSE_VERSION))
MONGOOSE_LICENSE = GPLv2
MONGOOSE_LICENSE_FILES = LICENSE
MONGOOSE_INSTALL_STAGING = YES

MONGOOSE_CFLAGS = $(TARGET_CFLAGS) $(TARGET_LDFLAGS)

@@ -20,12 +21,22 @@ endif
define MONGOOSE_BUILD_CMDS
	$(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_LD)" -C $(@D)/examples \
		CFLAGS_EXTRA="$(MONGOOSE_CFLAGS)" server
	$(TARGET_CC) -c $(@D)/mongoose.c $(MONGOOSE_CFLAGS) -o $(@D)/mongoose.o
	$(TARGET_AR) rcs $(@D)/libmongoose.a $(@D)/mongoose.o
endef

define MONGOOSE_INSTALL_TARGET_CMDS
	$(INSTALL) -D -m 755 $(@D)/examples/server $(TARGET_DIR)/usr/sbin/mongoose
	$(INSTALL) -D -m 755 $(@D)/examples/server \
		$(TARGET_DIR)/usr/sbin/mongoose
	$(INSTALL) -D -m 755 package/mongoose/S85mongoose \
		$(TARGET_DIR)/etc/init.d/S85mongoose
endef

define MONGOOSE_INSTALL_STAGING_CMDS
	$(INSTALL) -D -m 644 $(@D)/libmongoose.a \
		$(STAGING_DIR)/usr/lib/libmongoose.a
	$(INSTALL) -D -m 644 $(@D)/mongoose.h \
		$(STAGING_DIR)/usr/include/mongoose.h
endef

$(eval $(generic-package))