diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-30 12:26:09 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-30 12:26:09 +0000 |
commit | 2adaa6a3d7390ef6ef5e0e066648a3e27b1e558b (patch) | |
tree | 0d153a95f25c10a0265e696cc34ef8a87c78daad /openwrt/package/libupnp/Makefile | |
parent | 13b82c0a31627748dc589e3d9e44de23d49e2320 (diff) | |
download | mtk-20170518-2adaa6a3d7390ef6ef5e0e066648a3e27b1e558b.zip mtk-20170518-2adaa6a3d7390ef6ef5e0e066648a3e27b1e558b.tar.gz mtk-20170518-2adaa6a3d7390ef6ef5e0e066648a3e27b1e558b.tar.bz2 |
add libupnp package
SVN-Revision: 1795
Diffstat (limited to 'openwrt/package/libupnp/Makefile')
-rw-r--r-- | openwrt/package/libupnp/Makefile | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/openwrt/package/libupnp/Makefile b/openwrt/package/libupnp/Makefile new file mode 100644 index 0000000..88c48e7 --- /dev/null +++ b/openwrt/package/libupnp/Makefile @@ -0,0 +1,58 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=libupnp +PKG_VERSION:=1.2.1a +PKG_RELEASE:=1 +PKG_MD5SUM:=e72b3550bf064eedf080f16f09688891 + +PKG_SOURCE_URL:=@SF/upnp +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,LIBUPNP,libupnp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR)/upnp \ + $(TARGET_CONFIGURE_OPTS) \ + OPT_FLAGS="$(TARGET_CFLAGS)" \ + STRIP=/bin/true + touch $@ + +$(IPKG_LIBUPNP): + install -m0755 -d $(IDIR_LIBUPNP)/usr/lib + cp -fpR $(PKG_BUILD_DIR)/upnp/bin/libixml.so $(IDIR_LIBUPNP)/usr/lib/ ; \ + cp -fpR $(PKG_BUILD_DIR)/upnp/bin/libthreadutil.so $(IDIR_LIBUPNP)/usr/lib/ ; \ + cp -fpR $(PKG_BUILD_DIR)/upnp/bin/libupnp.so $(IDIR_LIBUPNP)/usr/lib/ ; \ + $(RSTRIP) $(IDIR_LIBUPNP) + $(IPKG_BUILD) $(IDIR_LIBUPNP) $(PACKAGE_DIR) + +$(STAGING_DIR)/usr/lib/libupnp.so: $(PKG_BUILD_DIR)/.built + mkdir -p $(STAGING_DIR)/usr/include/upnp + cp -fpR $(PKG_BUILD_DIR)/upnp/inc/*.h $(STAGING_DIR)/usr/include/upnp/ + mkdir -p $(STAGING_DIR)/usr/lib + cp -fpR $(PKG_BUILD_DIR)/upnp/bin/libixml.so $(STAGING_DIR)/usr/lib/ ; \ + cp -fpR $(PKG_BUILD_DIR)/upnp/bin/libthreadutil.so $(STAGING_DIR)/usr/lib/ ; \ + cp -fpR $(PKG_BUILD_DIR)/upnp/bin/libupnp.so $(STAGING_DIR)/usr/lib/ ; \ + touch $@ + +install-dev: $(STAGING_DIR)/usr/lib/libupnp.so + +uninstall-dev: + rm -rf \ + $(STAGING_DIR)/usr/include/upnp \ + $(STAGING_DIR)/usr/lib/libixml.so \ + $(STAGING_DIR)/usr/lib/libthreadutil.so \ + $(STAGING_DIR)/usr/lib/libupnp.so \ + +compile: install-dev +clean: uninstall-dev |