rtty: update to 6.6.1
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
This commit is contained in:
parent
0f21b03a46
commit
49984c2e22
3 changed files with 7 additions and 4 deletions
|
@ -8,13 +8,13 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=rtty
|
||||
PKG_VERSION:=6.5.0
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=6.6.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
||||
PKG_SOURCE_URL=https://codeload.github.com/zhaojh329/rtty/tar.gz/v$(PKG_VERSION)?
|
||||
PKG_HASH:=736f4f6bb214c5d97ae530d8029b9a113dbd82b5e6683cf46bf9f23c55fb10d8
|
||||
PKG_HASH:=4a46bd80f738ccb9aeea7c0cb8aa5ac364fd964d9ccc1bc3faf7b68eae17007c
|
||||
CMAKE_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
|
||||
|
|
|
@ -11,3 +11,4 @@
|
|||
# option port '5912' # Server Port
|
||||
# option ssl 1 # Whether to use ssl
|
||||
# option keepalive 5 # keep alive in seconds for this client
|
||||
# option token 'your-token' # generated by rttys
|
||||
|
|
|
@ -13,7 +13,8 @@ validate_rtty_section() {
|
|||
'host:host' \
|
||||
'port:port' \
|
||||
'ssl:bool:0' \
|
||||
'keepalive:uinteger:5'
|
||||
'keepalive:uinteger:5' \
|
||||
'token:maxlength(32)'
|
||||
}
|
||||
|
||||
start_rtty() {
|
||||
|
@ -49,6 +50,7 @@ start_rtty() {
|
|||
[ -n "$id" ] && procd_append_param command -I "$id"
|
||||
[ -n "$description" ] && procd_append_param command -d "$description"
|
||||
[ "$ssl" = "1" ] && procd_append_param command -s
|
||||
[ -n "$token" ] && procd_append_param command -t "$token"
|
||||
procd_set_param respawn
|
||||
procd_close_instance
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue