delete dumb containers
parent
47f66cd572
commit
86bae14dc6
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"image": "mcr.microsoft.com/devcontainers/cpp:ubuntu",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"danielgavin.ols"
|
||||
]
|
||||
}
|
||||
},
|
||||
"features": {
|
||||
"./odin-feature": {
|
||||
"version": "latest"
|
||||
},
|
||||
"ghcr.io/devcontainers/features/rust:1": {
|
||||
"version": "1.88.0",
|
||||
"profile": "default"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Odin Compiler",
|
||||
"id": "odin",
|
||||
"version": "1.0.0",
|
||||
"installsAfter": [
|
||||
"ghcr.io/devcontainers/features/common-utils"
|
||||
],
|
||||
"containerEnv": {
|
||||
"ODIN_ROOT": "/usr/local/share/odin"
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
git clone --branch "dev-2024-12" "https://github.com/odin-lang/Odin.git"
|
||||
|
||||
cd Odin
|
||||
|
||||
mkdir -p /usr/local/share/odin
|
||||
cp -r ./base /usr/local/share/odin/
|
||||
cp -r ./core /usr/local/share/odin/
|
||||
cp -r ./vendor /usr/local/share/odin/
|
||||
|
||||
make release
|
||||
|
||||
cp ./odin /usr/local/bin/
|
||||
|
||||
echo "Installing SDL2 & SDL2_ttf"
|
||||
apt update
|
||||
apt --yes --force-yes install libsdl2-dev libsdl2-ttf-dev
|
Loading…
Reference in New Issue