fix curl compile
[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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=clinkc
12 PKG_VERSION:=101
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/clinkc/
17 PKG_MD5SUM:=4c8ac54a15da47203a86daf77fbc2664
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/CyberLinkC
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 PKG_BUILD_DEPENDS:=libexpat
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 define Build/Compile
41 chmod +x $(PKG_BUILD_DIR)/config/install-sh
42 $(MAKE) -C $(PKG_BUILD_DIR) \
43 DESTDIR="$(PKG_INSTALL_DIR)" \
44 all install
45 endef
46
47 define Build/InstallDev
48 mkdir -p $(1)/usr/include
49 $(CP) $(PKG_INSTALL_DIR)/usr/include/cybergarage $(1)/usr/include/
50 mkdir -p $(1)/usr/lib
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libclinkc.a $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage/libclinkc))