mirror of
https://github.com/veeso/termscp.git
synced 2026-09-26 14:01:17 -07:00
Build Linux release artifacts as statically linked musl binaries for x86_64 and aarch64, update packaging and updater handling, and document the reduced runtime requirements. Keep release version preparation locked without refreshing dependencies or committing Cargo.lock. Closes #440
88 lines
3.2 KiB
Plaintext
88 lines
3.2 KiB
Plaintext
---
|
|
import Base from "../layouts/Base.astro";
|
|
import Nav from "../components/Nav.astro";
|
|
import Footer from "../components/Footer.astro";
|
|
import InstallTabs from "../components/InstallTabs.astro";
|
|
import CopyButton from "../components/CopyButton.astro";
|
|
import { DOCS_URL } from "../consts";
|
|
|
|
const script =
|
|
"curl --proto '=https' --tlsv1.2 -sSLf https://termscp.rs/install.sh | sh";
|
|
const psScript = "irm https://termscp.rs/install.ps1 | iex";
|
|
|
|
const methods = [
|
|
{ id: "cargo", label: "Cargo", cmd: "cargo install termscp --locked" },
|
|
{ id: "arch", label: "Arch Linux", cmd: "pacman -S termscp" },
|
|
{ id: "netbsd", label: "NetBSD", cmd: "pkgin install termscp" },
|
|
{ id: "choco", label: "Windows (Chocolatey)", cmd: "choco install termscp" },
|
|
];
|
|
---
|
|
|
|
<Base
|
|
title="Install termscp"
|
|
description="Install termscp on Linux, macOS, BSD and Windows — one shell command, or via Cargo, pacman, pkgin and Chocolatey."
|
|
path="/install"
|
|
>
|
|
<Nav />
|
|
<main class="mx-auto w-full max-w-3xl flex-1 px-4 py-12">
|
|
<h1 class="text-2xl font-bold text-text">Install termscp</h1>
|
|
<p class="mt-2 text-subtext">
|
|
Pick your platform. One command and you're in.
|
|
</p>
|
|
|
|
<div class="mt-6 rounded-lg border border-line bg-mantle p-1">
|
|
<div
|
|
class="flex items-center gap-2 border-b border-line px-3 py-2 text-xs text-overlay"
|
|
>
|
|
<span class="text-green">$</span> Linux · macOS · BSD
|
|
</div>
|
|
<div class="relative">
|
|
<pre
|
|
class="m-0 overflow-auto bg-base px-4 py-4 pr-12 text-sm text-text"><code>{script}</code></pre>
|
|
<CopyButton text={script} class="absolute right-2 top-2" />
|
|
</div>
|
|
</div>
|
|
<p class="mt-2 text-xs text-overlay">
|
|
Requires <span class="text-text">curl</span>. macOS uses Homebrew if
|
|
available, otherwise builds from source.
|
|
</p>
|
|
|
|
<div class="mt-6 rounded-lg border border-line bg-mantle p-1">
|
|
<div
|
|
class="flex items-center gap-2 border-b border-line px-3 py-2 text-xs text-overlay"
|
|
>
|
|
<span class="text-green">></span> Windows (PowerShell)
|
|
</div>
|
|
<div class="relative">
|
|
<pre
|
|
class="m-0 overflow-auto bg-base px-4 py-4 pr-12 text-sm text-text"><code>{psScript}</code></pre>
|
|
<CopyButton text={psScript} class="absolute right-2 top-2" />
|
|
</div>
|
|
</div>
|
|
<p class="mt-2 text-xs text-overlay">
|
|
Downloads the latest release and adds <span class="text-text"
|
|
>termscp</span
|
|
> to your user PATH.
|
|
</p>
|
|
|
|
<h2 class="mt-10 mb-3 text-lg text-text">Package managers</h2>
|
|
<InstallTabs methods={methods} />
|
|
|
|
<p class="mt-8 text-sm text-overlay">
|
|
Update anytime with <span class="text-green">termscp --update</span>.
|
|
</p>
|
|
<p class="mt-2 text-sm text-overlay">
|
|
Official Linux binaries and .deb packages are statically linked against <span
|
|
class="text-text">musl</span
|
|
>: no runtime dependencies, any distribution, any glibc version. Building
|
|
from source still needs <span class="text-text">libdbus-1</span>, <span
|
|
class="text-text">pkg-config</span
|
|
> and <span class="text-text">libsmbclient</span>. More details in the <a
|
|
href={DOCS_URL}
|
|
class="text-blue hover:underline">docs</a
|
|
>.
|
|
</p>
|
|
</main>
|
|
<Footer />
|
|
</Base>
|