You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2016 Shuanglei Tao <tsl0922@gmail.com>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ttyd
  9. PKG_VERSION:=1.6.1
  10. PKG_RELEASE:=3
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://codeload.github.com/tsl0922/ttyd/tar.gz/$(PKG_VERSION)?
  13. PKG_HASH:=d72dcca3dec00cda87b80a0a25ae4fee2f8b9098c1cdb558508dcb14fbb6fafc
  14. PKG_MAINTAINER:=Shuanglei Tao <tsl0922@gmail.com>
  15. PKG_LICENSE:=MIT
  16. PKG_LICENSE_FILES:=LICENSE
  17. PKG_BUILD_PARALLEL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. include $(INCLUDE_DIR)/cmake.mk
  20. define Package/ttyd
  21. SECTION:=utils
  22. CATEGORY:=Utilities
  23. TITLE:=Command-line tool for sharing terminal over the web
  24. DEPENDS:=+libopenssl +libjson-c +libuv +zlib +libwebsockets-full
  25. URL:=https://github.com/tsl0922/ttyd
  26. SUBMENU:=Terminal
  27. endef
  28. define Package/ttyd/description
  29. ttyd is a command-line tool for sharing terminal over the web.
  30. endef
  31. define Package/ttyd/conffiles
  32. /etc/config/ttyd
  33. endef
  34. define Package/ttyd/install
  35. $(INSTALL_DIR) $(1)/usr/bin
  36. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ttyd $(1)/usr/bin/
  37. $(INSTALL_DIR) $(1)/etc/config/
  38. $(INSTALL_CONF) ./files/ttyd.config $(1)/etc/config/ttyd
  39. $(INSTALL_DIR) $(1)/etc/init.d/
  40. $(INSTALL_BIN) ./files/ttyd.init $(1)/etc/init.d/ttyd
  41. endef
  42. $(eval $(call BuildPackage,ttyd))