Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAndreiM authored Jul 25, 2024
1 parent ee33dcd commit fb20f30
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"label": "Juka",
"icon": "jukalogo.png",
"launch": "launch.sh",
"description": "Juka Programming Language"
}
4 changes: 4 additions & 0 deletions example.juk
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sub main() = {
printLine("Hello World");
printLine("Hello World2");
}
Binary file added jukalogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions launch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh
cd $(dirname "$0")


cp /usr/trimui/lib/libSDL2-2.0.so.0 .
mv libSDL2-2.0.so.0 libSDL2.so
cp /usr/trimui/lib/libSDL2_ttf-2.0.so.0 .
mv libSDL2_ttf-2.0.so.0 libSDL2_ttf.so
cp /usr/trimui/lib/libSDL2_image-2.0.so.0 .
mv libSDL2_image-2.0.so.0 libSDL2_image.so

export LD_LIBRARY_PATH="/usr/trimui/lib:$LD_LIBRARY_PATH"

./Juka &> errors.txt


exit 0
Binary file added open-sans.ttf
Binary file not shown.

0 comments on commit fb20f30

Please sign in to comment.