2012-06-12 18:40:32 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# cjson
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
CJSON_VERSION = undefined
|
|
|
|
CJSON_SOURCE = cJSONFiles.zip
|
2012-08-26 01:52:48 +02:00
|
|
|
CJSON_SITE = http://downloads.sourceforge.net/project/cjson/
|
2012-06-12 18:40:32 +02:00
|
|
|
CJSON_INSTALL_STAGING = YES
|
2012-08-04 05:19:05 +02:00
|
|
|
CJSON_LICENSE = MIT
|
2012-06-12 18:40:32 +02:00
|
|
|
|
|
|
|
define CJSON_EXTRACT_CMDS
|
|
|
|
unzip -d $(@D) $(DL_DIR)/$(CJSON_SOURCE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define CJSON_BUILD_CMDS
|
2012-08-27 17:58:06 +02:00
|
|
|
cd $(@D)/cJSON && $(TARGET_CC) $(TARGET_CFLAGS) -shared -fPIC cJSON.c -o libcJSON.so
|
2012-06-12 18:40:32 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define CJSON_INSTALL_STAGING_CMDS
|
|
|
|
$(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h
|
|
|
|
$(INSTALL) -D $(@D)/cJSON/libcJSON.so $(STAGING_DIR)/usr/lib/libcJSON.so
|
|
|
|
endef
|
|
|
|
|
|
|
|
define CJSON_INSTALL_TARGET_CMDS
|
|
|
|
$(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h
|
|
|
|
$(INSTALL) -D $(@D)/cJSON/libcJSON.so $(TARGET_DIR)/usr/lib/libcJSON.so
|
|
|
|
endef
|
|
|
|
|
|
|
|
define CJSON_UNINSTALL_STAGING_CMDS
|
|
|
|
rm -f $(STAGING_DIR)/usr/include/cJSON.h
|
|
|
|
rm -f $(STAGING_DIR)/usr/lib/libcJSON.so
|
|
|
|
endef
|
|
|
|
|
|
|
|
define CJSON_UNINSTALL_TARGET_CMDS
|
|
|
|
rm -f $(TARGET_DIR)/usr/include/cJSON.h
|
|
|
|
rm -f $(TARGET_DIR)/usr/lib/libcJSON.so
|
|
|
|
endef
|
|
|
|
|
|
|
|
define CJSON_CLEAN_CMDS
|
|
|
|
cd $(@D)/cJSON && rm -f libcJSON.so
|
|
|
|
endef
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|