2022-07-25 15:40:05 +08:00
|
|
|
import { dirname } from "path"
|
|
|
|
import which from "which"
|
2022-07-25 15:46:23 +08:00
|
|
|
import { isUbuntu } from "../utils/env/isUbuntu"
|
2022-08-08 08:38:34 +08:00
|
|
|
import { execRootSync } from "root-tools"
|
2022-07-28 11:14:37 +08:00
|
|
|
import { addAptKeyViaDownload, setupAptPack } from "../utils/setup/setupAptPack"
|
2022-07-25 15:40:05 +08:00
|
|
|
|
|
|
|
let binDir: string | undefined
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2022-07-28 10:07:30 +08:00
|
|
|
export async function setupNala(version: string, _setupDir: string, _arch: string) {
|
2022-07-25 15:46:23 +08:00
|
|
|
if (!isUbuntu()) {
|
2022-07-25 15:40:05 +08:00
|
|
|
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
|
2022-07-28 11:14:37 +08:00
|
|
|
const keyFileName = await addAptKeyViaDownload(
|
|
|
|
"volian-archive-scar-unstable.gpg",
|
|
|
|
"https://deb.volian.org/volian/scar.key"
|
|
|
|
)
|
2022-08-08 08:33:11 +08:00
|
|
|
execRootSync("/bin/bash", [
|
2022-07-28 11:27:12 +08:00
|
|
|
"-c",
|
|
|
|
`echo "deb [signed-by=${keyFileName}] http://deb.volian.org/volian/ scar main" | tee /etc/apt/sources.list.d/volian-archive-scar-unstable.list`,
|
|
|
|
])
|
2022-07-25 15:40:05 +08:00
|
|
|
|
2022-07-28 07:47:55 +08:00
|
|
|
try {
|
|
|
|
if (version !== "legacy") {
|
2022-07-28 10:07:30 +08:00
|
|
|
await setupAptPack("nala", undefined, [], true)
|
2022-07-28 07:47:55 +08:00
|
|
|
} else {
|
2022-07-28 10:07:30 +08:00
|
|
|
await setupAptPack("nala-legacy", undefined, [], true)
|
2022-07-28 07:47:55 +08:00
|
|
|
}
|
|
|
|
} catch (err) {
|
2022-07-28 10:07:30 +08:00
|
|
|
await setupAptPack("nala-legacy", undefined, [], true)
|
2022-07-25 15:40:05 +08:00
|
|
|
}
|
|
|
|
|
2022-07-28 10:07:30 +08:00
|
|
|
binDir = "/usr/bin" // eslint-disable-line require-atomic-updates
|
2022-07-25 15:40:05 +08:00
|
|
|
|
|
|
|
return { binDir }
|
|
|
|
}
|