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: Davide Viti <d.viti@infosolution.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Davide Viti 2014-05-27 11:31:43 +02:00 committed by Peter Korsgaard
parent ad75a7f58c
commit 66d364f4f2
2 changed files with 13 additions and 2 deletions

View File

@ -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

View File

@ -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))