mirror of https://github.com/aminya/setup-cpp
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import { dirname } from "patha"
|
|
import which from "which"
|
|
import { isUbuntu } from "../utils/env/isUbuntu"
|
|
import { execRootSync } from "admina"
|
|
import { addAptKeyViaDownload, setupAptPack } from "../utils/setup/setupAptPack"
|
|
|
|
let binDir: string | undefined
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export async function setupNala(version: string, _setupDir: string, _arch: string) {
|
|
if (!isUbuntu()) {
|
|
return undefined
|
|
}
|
|
if (typeof binDir === "string") {
|
|
return { binDir }
|
|
}
|
|
|
|
const maybeBinDir = which.sync("nala", { nothrow: true })
|
|
if (maybeBinDir !== null) {
|
|
binDir = dirname(maybeBinDir)
|
|
return { binDir }
|
|
}
|
|
|
|
// https://github.com/volitank/nala#-installation
|
|
const keyFileName = await addAptKeyViaDownload(
|
|
"volian-archive-scar-unstable.gpg",
|
|
"https://deb.volian.org/volian/scar.key"
|
|
)
|
|
execRootSync("/bin/bash", [
|
|
"-c",
|
|
`echo "deb [signed-by=${keyFileName}] http://deb.volian.org/volian/ scar main" | tee /etc/apt/sources.list.d/volian-archive-scar-unstable.list`,
|
|
])
|
|
|
|
try {
|
|
if (version !== "legacy") {
|
|
await setupAptPack([{ name: "nala" }], true)
|
|
} else {
|
|
await setupAptPack([{ name: "nala-legacy" }], true)
|
|
}
|
|
} catch (err) {
|
|
await setupAptPack([{ name: "nala-legacy" }], true)
|
|
}
|
|
|
|
binDir = "/usr/bin" // eslint-disable-line require-atomic-updates
|
|
|
|
return { binDir }
|
|
}
|