X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=package%2Fuci%2FMakefile;h=029e63615748fc6dd18266ff9735ffb385e673f5;hb=c8c899e2aa030a98bdd78d182e588c15c5cf508c;hp=8e654e76a21c7f4ce6fca125bd4eb809e4ffcda0;hpb=2c74315cc27ff2fb9c71126ee4a33382f4c2f77e;p=openwrt.git diff --git a/package/uci/Makefile b/package/uci/Makefile index 8e654e76a2..029e636157 100644 --- a/package/uci/Makefile +++ b/package/uci/Makefile @@ -1,26 +1,36 @@ -# -# Copyright (C) 2008 OpenWrt.org +# +# Copyright (C) 2008-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk -UCI_VERSION=0.2 -UCI_RELEASE= +UCI_VERSION=2013-01-04 +UCI_RELEASE=1 PKG_NAME:=uci -PKG_VERSION:=$(UCI_VERSION)$(UCI_RELEASE) +PKG_VERSION:=$(UCI_VERSION)$(if $(UCI_RELEASE),.$(UCI_RELEASE)) PKG_RELEASE:=1 +PKG_REV:=e4516d01a7d2b0a5a8def7b5791c7d4032138287 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://downloads.openwrt.org/sources -PKG_MD5SUM:=8cb8e1e511d1a34372bf9f3239624433 +PKG_SOURCE_URL:=git://nbd.name/uci.git +PKG_SOURCE_SUBDIR:=uci-$(PKG_VERSION) +PKG_SOURCE_VERSION:=$(PKG_REV) +PKG_SOURCE_PROTO:=git +PKG_MIRROR_MD5SUM:=c7c4fd6723b607ae7fa039a1078fe7d5 + +PKG_LICENSE:=LGPLv2.1 GPLv2 +PKG_LICENSE_FILES:= + +PKG_MAINTAINER:=Felix Fietkau +PKG_BUILD_PARALLEL:=0 include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk # set to 1 to enable debugging DEBUG= @@ -38,41 +48,45 @@ define Package/uci TITLE:=Utility for the Unified Configuration Interface (UCI) endef -define Package/uci-sh - SECTION:=base - CATEGORY:=Base system - DEPENDS:=@!PACKAGE_uci - TITLE:=Old shell/awk implementation of UCI +define Package/libuci-lua + SECTION=libs + CATEGORY=Libraries + DEPENDS:=+libuci +liblua + TITLE:=Lua plugin for UCI endef -define Build/Configure -endef +TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include +TARGET_LDFLAGS += -L$(STAGING_DIR)/usr/lib -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) \ - COPTS="$(TARGET_CFLAGS)" \ - DEBUG="$(DEBUG)" \ - VERSION="$(UCI_VERSION)" \ - OS="Linux" -endef +CMAKE_OPTIONS = \ + -DLUAPATH=/usr/lib/lua \ + $(if $(DEBUG),-DUCI_DEBUG=ON) define Package/libuci/install $(INSTALL_DIR) $(1)/lib $(CP) $(PKG_BUILD_DIR)/libuci.so* $(1)/lib/ endef +define Package/libuci-lua/install + $(INSTALL_DIR) $(1)/usr/lib/lua + $(CP) $(PKG_BUILD_DIR)/lua/uci.so $(1)/usr/lib/lua/ +endef + define Package/uci/install + $(INSTALL_DIR) $(1)/etc/uci-defaults $(INSTALL_DIR) $(1)/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/uci $(1)/sbin/ - $(CP) ./files/uci/* $(1)/ + $(CP) ./files/* $(1)/ endef -define Package/uci-sh/install - $(INSTALL_DIR) $(1) - $(CP) ./files/uci-sh/* $(1)/ +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_BUILD_DIR)/uci{,_config,map}.h $(1)/usr/include + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/libuci.so* $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/libucimap.a $(1)/usr/lib endef $(eval $(call BuildPackage,uci)) $(eval $(call BuildPackage,libuci)) -$(eval $(call BuildPackage,uci-sh)) +$(eval $(call BuildPackage,libuci-lua))