tangled
alpha
login
or
join now
tsiry-sandratraina.com
/
tunein-cli
6
fork
atom
Browse and listen to thousands of radio stations across the globe right from your terminal ๐ ๐ป ๐ตโจ
radio
rust
tokio
web-radio
command-line-tool
tui
6
fork
atom
overview
issues
pulls
pipelines
ci: link with libsystemd
tsiry-sandratraina.com
6 months ago
083dbaa0
a53e6a01
0/1
fmt.yml
pending
6mo ago
+3
-3
1 changed file
expand all
collapse all
unified
split
.fluentci
src
dagger
lib.ts
+3
-3
.fluentci/src/dagger/lib.ts
···
2
2
import { Directory, DirectoryID } from "../../deps.ts";
3
3
4
4
export const getDirectory = async (
5
5
-
src: string | Directory | undefined = "."
5
5
+
src: string | Directory | undefined = ".",
6
6
) => {
7
7
if (src instanceof Directory) {
8
8
return src;
···
30
30
rustflags = `-C linker=aarch64-linux-gnu-gcc \
31
31
-L/usr/aarch64-linux-gnu/lib \
32
32
-L/build/sysroot/usr/lib/aarch64-linux-gnu \
33
33
-
-L/build/sysroot/lib/aarch64-linux-gnu`;
33
33
+
-L/build/sysroot/lib/aarch64-linux-gnu -lsystemd`;
34
34
break;
35
35
case "armv7-unknown-linux-gnueabihf":
36
36
rustflags = `-C linker=arm-linux-gnueabihf-gcc \
37
37
-L/usr/arm-linux-gnueabihf/lib \
38
38
-L/build/sysroot/usr/lib/arm-linux-gnueabihf \
39
39
-
-L/build/sysroot/lib/arm-linux-gnueabihf`;
39
39
+
-L/build/sysroot/lib/arm-linux-gnueabihf -lsystemd`;
40
40
break;
41
41
default:
42
42
break;