SVN-Revision: 3048master
parent
cc13c60980
commit
066daaac0a
@ -0,0 +1,10 @@ |
|||||||
|
config BR2_PACKAGE_CLINKC |
||||||
|
prompt "clinkc............................ Embedded UPnP library" |
||||||
|
tristate |
||||||
|
default m if CONFIG_DEVEL |
||||||
|
select BR2_PACKAGE_LIBEXPAT |
||||||
|
help |
||||||
|
CyberLink for C is a UPnP library using C for small and embedded platforms. |
||||||
|
|
||||||
|
http://sourceforge.net/projects/clinkc |
||||||
|
|
@ -0,0 +1,63 @@ |
|||||||
|
# $Id: Makefile 1640 2005-08-13 20:32:32Z florian $
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk |
||||||
|
|
||||||
|
PKG_NAME:=clinkc
|
||||||
|
PKG_VERSION:=101
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=4c8ac54a15da47203a86daf77fbc2664
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=@SF/clinkc/
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).tar.gz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/CyberLinkC
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk |
||||||
|
|
||||||
|
$(eval $(call PKG_template,CLINKC,clinkc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) |
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured: |
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--with-gnu-ld \
|
||||||
|
);
|
||||||
|
chmod +x $(PKG_BUILD_DIR)/config/install-sh
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built: |
||||||
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_CLINKC): |
||||||
|
cp -fpR $(PKG_INSTALL_DIR) $(IDIR_CLINKC)
|
||||||
|
$(RSTRIP) $(IDIR_CLINKC)
|
||||||
|
$(IPKG_BUILD) $(IDIR_CLINKC) $(PACKAGE_DIR)
|
||||||
|
|
@ -0,0 +1,5 @@ |
|||||||
|
Package: clinkc |
||||||
|
Priority: optional |
||||||
|
Section: net |
||||||
|
Description: CyberLink for C is a UPnP library using C for small and embedded platforms. |
||||||
|
Priority: optional |
Loading…
Reference in new issue