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.

46 lines
1.1 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.4.2
  10. PKG_RELEASE:=2
  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:=ff1a66b418df6cd741868a8ea84f69cd63f15e52e3fa117641ec57d3c37a1315
  14. PKG_LICENSE:=MIT
  15. PKG_LICENSE_FILES:=LICENSE
  16. PKG_BUILD_DEPENDS:=vim/host
  17. CMAKE_INSTALL:=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 +libpthread +libwebsockets-full
  25. URL:=https://github.com/tsl0922/ttyd
  26. SUBMENU:=Terminal
  27. MAINTAINER:=Shuanglei Tao <tsl0922@gmail.com>
  28. endef
  29. define Package/ttyd/description
  30. ttyd is a command-line tool for sharing terminal over the web.
  31. endef
  32. define Package/ttyd/install
  33. $(INSTALL_DIR) $(1)/usr/bin
  34. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ttyd $(1)/usr/bin/
  35. endef
  36. $(eval $(call BuildPackage,ttyd))