From 91f7edc6c1f4440c1564d7056a076525e2d6f00c Mon Sep 17 00:00:00 2001 From: nbd Date: Fri, 26 Jul 2013 10:44:28 +0000 Subject: [PATCH] libconfig: delete from /packages (moved to trunk) Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/packages@37557 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/libconfig/Makefile | 61 ----------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 libs/libconfig/Makefile diff --git a/libs/libconfig/Makefile b/libs/libconfig/Makefile deleted file mode 100644 index f56de438b..000000000 --- a/libs/libconfig/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# -# Copyright (C) 2008-2012 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=libconfig -PKG_VERSION:=1.4.8 -PKG_RELEASE:=2 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.hyperrealm.com/libconfig -PKG_MD5SUM:=36788da452e9fcfc8efb7661ef5d31ef - -PKG_FIXUP:=autoreconf -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/libconfig - SECTION:=libs - CATEGORY:=Libraries - TITLE:=Configuration File Library - URL:=http://www.hyperrealm.com/libconfig/ -endef - -define Package/libconfig/description - Libconfig is a simple library for manipulating structured configuration - files. This file format is more compact and more readable than XML. And - unlike XML, it is type-aware, so it is not necessary to do string - parsing in application code. - - Libconfig is very compact -- just 38K for the stripped C shared - library (less than one-fourth the size of the expat XML parser library) - and 66K for the stripped C++ shared library. This makes it well-suited - for memory-constrained systems like handheld devices. -endef - -CONFIGURE_ARGS += \ - --enable-shared \ - --enable-static \ - --disable-cxx - -define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/libconfig.h $(1)/usr/include/ - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libconfig.{a,so*} $(1)/usr/lib/ - $(INSTALL_DIR) $(1)/usr/lib/pkgconfig - $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libconfig.pc $(1)/usr/lib/pkgconfig/ -endef - -define Package/libconfig/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libconfig.so* $(1)/usr/lib/ -endef - -$(eval $(call BuildPackage,libconfig))