diff --git a/dist/pkgs/arch/.SRCINFO b/dist/pkgs/arch/.SRCINFO new file mode 100644 index 0000000..3133bc3 --- /dev/null +++ b/dist/pkgs/arch/.SRCINFO @@ -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 + diff --git a/dist/pkgs/arch/PKGBUILD b/dist/pkgs/arch/PKGBUILD new file mode 100644 index 0000000..5af2e26 --- /dev/null +++ b/dist/pkgs/arch/PKGBUILD @@ -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/" +}