Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Copyright (C) 2008-2015 The LuCI Team <luci@lists.subsignal.org>
  3. #
  4. # This is free software, licensed under the Apache License, Version 2.0 .
  5. #
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=luci-base
  8. LUCI_TYPE:=mod
  9. LUCI_BASENAME:=base
  10. LUCI_TITLE:=LuCI core libraries
  11. LUCI_DEPENDS:=+lua +libuci-lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua
  12. PKG_SOURCE:=LuaSrcDiet-0.12.1.tar.bz2
  13. PKG_SOURCE_URL:=https://luasrcdiet.googlecode.com/files
  14. PKG_MD5SUM:=8a0812701e29b6715e4d76f2f118264a
  15. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/LuaSrcDiet-0.12.1
  16. include $(INCLUDE_DIR)/host-build.mk
  17. include ../../luci.mk
  18. define Host/Configure
  19. endef
  20. define Host/Compile
  21. $(MAKE) -C src/ clean po2lmo
  22. $(MAKE) -C $(HOST_BUILD_DIR) bin/LuaSrcDiet.lua
  23. endef
  24. define Host/Install
  25. $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
  26. $(INSTALL_BIN) src/po2lmo $(STAGING_DIR_HOST)/bin/po2lmo
  27. $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/LuaSrcDiet.lua $(STAGING_DIR_HOST)/bin/LuaSrcDiet
  28. endef
  29. $(eval $(call HostBuild))
  30. # call BuildPackage - OpenWrt buildroot signature