[packages] c-ares: update to 1.7.1
[openwrt/svn-archive/archive.git] / libs / clinkc / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=clinkc
11 PKG_VERSION:=101
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/clinkc/
16 PKG_MD5SUM:=4c8ac54a15da47203a86daf77fbc2664
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/CyberLinkC
19
20 PKG_BUILD_DEPENDS:=libexpat
21 PKG_FIXUP:=libtool
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/libclinkc
27 SECTION:=libs
28 CATEGORY:=Libraries
29 DEPENDS:=+libexpat
30 TITLE:=Embedded UPnP library
31 URL:=http://sourceforge.net/projects/clinkc
32 endef
33
34 define Package/libclinkc/description
35 CyberLink for C is a UPnP library using C for small and embedded platforms.
36 endef
37
38 # uses GNU configure
39
40 TARGET_CFLAGS += $(FPIC)
41
42 define Build/Compile
43 chmod +x $(PKG_BUILD_DIR)/config/install-sh
44 $(call Build/Compile/Default)
45 endef
46
47 define Build/InstallDev
48 $(INSTALL_DIR) $(1)/usr/include
49 $(CP) $(PKG_INSTALL_DIR)/usr/include/cybergarage $(1)/usr/include/
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libclinkc.a $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libclinkc))