Makefile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # Copyright (C) 2017 Robert Call <bob@bobcall.me>
  3. #
  4. # You may redistribute this program and/or modify it under the terms of
  5. # the GNU General Public License as published by the Free Software Foundation,
  6. # either version 3 of the License, or (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. #
  16. include $(TOPDIR)/rules.mk
  17. PKG_NAME:=luci-app-shellinabox
  18. PKG_VERSION:=0.1
  19. PKG_RELEASE:=4
  20. PKG_LICENSE:=GPL-3.0
  21. include $(INCLUDE_DIR)/package.mk
  22. define Package/luci-app-shellinabox
  23. SECTION:=luci
  24. CATEGORY:=LuCI
  25. SUBMENU:=3. Applications
  26. TITLE:=Shell in a box integration
  27. URL:=
  28. MAINTAINER:=Robert Call <bob@bobcall.me>
  29. DEPENDS:=+shellinabox
  30. endef
  31. define Package/luci-app-shellinabox/description
  32. This package adds terminal integration into luci to make
  33. router maintanance easier for those new to GNU/Linux or
  34. don't have access to a GNU/Linux box.
  35. endef
  36. define Build/Compile
  37. endef
  38. define Package/luci-app-shellinabox/install
  39. $(INSTALL_DIR) $(1)/usr/lib/lua/luci
  40. $(INSTALL_DIR) $(1)/www/static
  41. $(CP) ./luasrc/* $(1)/usr/lib/lua/luci
  42. $(CP) ./files/terminal.png $(1)/www/static/terminal.png
  43. endef
  44. $(eval $(call BuildPackage,luci-app-shellinabox))