mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-24 12:44:20 +01:00
Snap created and ready for publication (#1003)
This commit is contained in:
@@ -31,6 +31,12 @@ brew install ttyd
|
||||
## Install on Linux
|
||||
|
||||
- Binary version (recommended): download from the [releases](https://github.com/tsl0922/ttyd/releases) page.
|
||||
|
||||
- Install the snap:
|
||||
|
||||
`sudo snap install ttyd --classic`
|
||||
|
||||
|
||||
- Build from source (debian/ubuntu):
|
||||
|
||||
```bash
|
||||
|
||||
50
snap/snapcraft.yaml
Normal file
50
snap/snapcraft.yaml
Normal file
@@ -0,0 +1,50 @@
|
||||
name: ttyd
|
||||
adopt-info: ttyd
|
||||
summary: Share your terminal over the web
|
||||
description: |
|
||||
ttyd is a simple command-line tool for sharing terminal over the web
|
||||
|
||||
grade: stable
|
||||
confinement: classic
|
||||
base: core20
|
||||
compression: lzo
|
||||
|
||||
license: MIT
|
||||
|
||||
assumes:
|
||||
- command-chain
|
||||
|
||||
apps:
|
||||
ttyd:
|
||||
command: usr/bin/ttyd
|
||||
command-chain:
|
||||
- bin/homeishome-launch
|
||||
|
||||
parts:
|
||||
ttyd:
|
||||
source: https://github.com/tsl0922/ttyd
|
||||
source-type: git
|
||||
plugin: cmake
|
||||
cmake-parameters:
|
||||
- -DCMAKE_INSTALL_PREFIX=/usr
|
||||
build-environment:
|
||||
- LDFLAGS: "-pthread"
|
||||
|
||||
override-pull: |
|
||||
snapcraftctl pull
|
||||
snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)"
|
||||
|
||||
build-packages:
|
||||
- build-essential
|
||||
- libjson-c-dev
|
||||
- libwebsockets-dev
|
||||
|
||||
stage-packages:
|
||||
- build-essential
|
||||
- libjson-c-dev
|
||||
- libwebsockets-dev
|
||||
|
||||
homeishome-launch:
|
||||
plugin: nil
|
||||
stage-snaps:
|
||||
- homeishome-launch
|
||||
Reference in New Issue
Block a user