# # Copyright (C) 2006-2013 OpenWrt.org # # This is free software, licensed under the GNU General Public License v3. # include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-lime-location PKG_VERSION=$(GIT_COMMIT_DATE)-$(GIT_COMMIT_TSTAMP) GIT_COMMIT_DATE:=$(shell git log -n 1 --pretty=%ad --date=short . ) GIT_COMMIT_TSTAMP:=$(shell git log -n 1 --pretty=%at . ) include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME) SECTION:=luci CATEGORY:=LuCI TITLE:=LuCI - Lua Configuration Interface MAINTAINER:=NicoEchaniz SUBMENU:=3. Applications TITLE:=luci app to handle LibreMap location PKGARCH:=all DEPENDS:= +libc +libremap-agent endef define Package/$(PKG_NAME)/description This luci application lets the user set the LibreMap coordinates for the node endef define Build/Compile endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/ $(CP) ./files/* $(1)/ endef $(eval $(call BuildPackage,$(PKG_NAME)))