Arch package (0.2.0)

This commit is contained in:
ChristianVisintin 2020-12-21 12:22:13 +01:00
parent 03e63e11ac
commit 963ef88ae5
2 changed files with 30 additions and 0 deletions

14
dist/pkgs/arch/.SRCINFO vendored Normal file
View file

@ -0,0 +1,14 @@
pkgbase = termscp-bin
pkgdesc = TermSCP is a SCP/SFTP/FTPS client for command line with an integrated UI to explore the remote file system. Basically WinSCP on a terminal.
pkgver = 0.2.0
pkgrel = 1
url = https://github.com/ChristianVisintin/termscp
arch = x86_64
license = GPL-3.0
provides = termscp
options = strip
source = https://github.com/ChristianVisintin/termscp/releases/download/v0.2.0/termscp-0.2.0-x86_64.tar.gz
sha256sums = 8fbf39be0c26c604dc75fb2a6fe9a62ffb50b3e95229db47365bb9cfbb5d95a2
pkgname = termscp-bin

16
dist/pkgs/arch/PKGBUILD vendored Normal file
View file

@ -0,0 +1,16 @@
# Maintainer: Christian Visintin
pkgname=termscp-bin
pkgver=0.2.0
pkgrel=1
pkgdesc="TermSCP is a SCP/SFTP/FTPS client for command line with an integrated UI to explore the remote file system. Basically WinSCP on a terminal."
url="https://github.com/ChristianVisintin/termscp"
license=("GPL-3.0")
arch=("x86_64")
provides=("termscp")
options=("strip")
source=("https://github.com/ChristianVisintin/termscp/releases/download/v$pkgver/termscp-$pkgver-x86_64.tar.gz")
sha256sums=("8fbf39be0c26c604dc75fb2a6fe9a62ffb50b3e95229db47365bb9cfbb5d95a2")
package() {
install -Dm755 termscp -t "$pkgdir/usr/bin/"
}