Skip to content

Commit fb20f30

Browse files
authored
Add files via upload
1 parent ee33dcd commit fb20f30

File tree

5 files changed

+27
-0
lines changed

5 files changed

+27
-0
lines changed

config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"label": "Juka",
3+
"icon": "jukalogo.png",
4+
"launch": "launch.sh",
5+
"description": "Juka Programming Language"
6+
}

example.juk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
sub main() = {
2+
printLine("Hello World");
3+
printLine("Hello World2");
4+
}

jukalogo.png

7.56 KB
Loading

launch.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/sh
2+
cd $(dirname "$0")
3+
4+
5+
cp /usr/trimui/lib/libSDL2-2.0.so.0 .
6+
mv libSDL2-2.0.so.0 libSDL2.so
7+
cp /usr/trimui/lib/libSDL2_ttf-2.0.so.0 .
8+
mv libSDL2_ttf-2.0.so.0 libSDL2_ttf.so
9+
cp /usr/trimui/lib/libSDL2_image-2.0.so.0 .
10+
mv libSDL2_image-2.0.so.0 libSDL2_image.so
11+
12+
export LD_LIBRARY_PATH="/usr/trimui/lib:$LD_LIBRARY_PATH"
13+
14+
./Juka &> errors.txt
15+
16+
17+
exit 0

open-sans.ttf

128 KB
Binary file not shown.

0 commit comments

Comments
 (0)