ucmb: Update AVR sample implementation and update license headers.
[openwrt/svn-archive/archive.git] / libs / libjson-c / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: Makefile 6643 2007-03-23 08:11:08Z nico $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=json-c
12 PKG_VERSION:=0.7
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://oss.metaparadigm.com/json-c/
17 PKG_MD5SUM:=
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/libjson
22 SECTION:=libs
23 CATEGORY:=Libraries
24 TITLE:=javascript object notation
25 URL:=http://oss.metaparadigm.com/json-c/
26 endef
27
28 define Package/libjson/description
29 This package contains a library for javascript object notation backends.
30 endef
31
32 TARGET_CFLAGS += $(FPIC)
33
34 define Build/Compile
35 $(MAKE) -C $(PKG_BUILD_DIR) \
36 DESTDIR="$(PKG_INSTALL_DIR)" \
37 all install
38 endef
39
40 define Build/InstallDev
41 mkdir -p $(1)/usr/include
42 $(CP) $(PKG_INSTALL_DIR)/usr/include/json $(1)/usr/include/
43 mkdir -p $(1)/usr/lib
44 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson.{a,so*} $(1)/usr/lib/
45 mkdir -p $(1)/usr/lib/pkgconfig
46 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/json.pc $(1)/usr/lib/pkgconfig/
47 endef
48
49 define Package/libjson/install
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson.so.* $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libjson))