]> prime8.dev >> repos - ttyd.git/commitdiff
[ci skip] update README.md and use libopenssl for openwrt
authorShuanglei Tao <tsl0922@gmail.com>
Sat, 1 Oct 2016 13:41:26 +0000 (21:41 +0800)
committerShuanglei Tao <tsl0922@gmail.com>
Sat, 1 Oct 2016 13:42:16 +0000 (21:42 +0800)
README.md
openwrt/Makefile

index b5d13e193ecce547ccf740de44533a04a7bd382a..8dd375950f0f4998d12cb48d1aa7cc8b3827cd39 100644 (file)
--- a/README.md
+++ b/README.md
@@ -11,11 +11,11 @@ ttyd is a simple command-line tool for sharing terminal over the web, inspired b
 - SSL support based on [OpenSSL](https://www.openssl.org)
 - Run any custom command with options
 - Basic authentication support
-- Cross platform: macOS, Linux, OpenWrt
+- Cross platform: macOS, Linux, [OpenWrt](https://openwrt.org)/[LEDE](https://www.lede-project.org)
 
 # Installation
 
-### For Mac OS X users
+## Install on macOS
 
 Install with [homebrew](http://brew.sh):
 
@@ -24,7 +24,7 @@ brew tap tsl0922/ttyd
 brew install ttyd
 ```
 
-### For Linux users
+## Install on Linux
 
 Ubuntu 16.04 as example:
 
@@ -36,8 +36,15 @@ cmake ..
 make && make install
 ```
 
-> **NOTE:** You may need to compile libwebsockets from source for ubuntu versions old than 16.04,
-> since they have outdated `libwebsockets-dev` package ([Issue #6](https://github.com/tsl0922/ttyd/issues/6)).
+> **NOTE:** You may need to compile libwebsockets from source for ubuntu versions old than 16.04, since they have outdated `libwebsockets-dev` package ([Issue #6](https://github.com/tsl0922/ttyd/issues/6)).
+
+## Install on OpenWrt/LEDE
+
+```bash
+opkg install ttyd
+```
+
+> **NOTE:** This may only works for [LEDE](https://www.lede-project.org) snapshots currently, if the install command fails, compile it yourself.
 
 # Usage
 
index 7bf743e11986921988ff6bbba7615c2301277fe3..356258ad7721be8986558fa37a8cd3015353a5fc 100644 (file)
@@ -29,7 +29,7 @@ define Package/ttyd
        SECTION:=utils
        CATEGORY:=Utilities
        TITLE:=Command-line tool for sharing terminal over the web
-       DEPENDS:=+openssl +libjson-c +libpthread +libwebsockets-openssl
+       DEPENDS:=+libopenssl +libjson-c +libpthread +libwebsockets-openssl
        URL:=https://github.com/tsl0922/ttyd
        SUBMENU:=Terminal
        MAINTAINER:=Shuanglei Tao <tsl0922@gmail.com>