Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gepatto
Last active March 4, 2023 19:52
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gepatto/c0febd3d23035c7f2c0f574f98a32c78 to your computer and use it in GitHub Desktop.
Save gepatto/c0febd3d23035c7f2c0f574f98a32c78 to your computer and use it in GitHub Desktop.
DEPRECATED: install haxe from docker and copy to system (needs docker installed). Run as ./install_haxe_from_docker.sh 4.1.5-buster
#!/bin/bash
#DEPRECATED
BLACK="[30m"
RED="[31m"
GREEN="[32m"
YELLOW="[33m"
BLUE="[34m"
PURPLE="[35m"
TEAL="[36m"
WHITE="[37m"
# >>>>>> HELPER FUNCTIONS
function echoSection {
local color="${2:-$YELLOW}"
echo -en "\e$color\n--------------------------------------------------------------------------------\n--\n-- " $1 "\n--\n--------------------------------------------------------------------------------\e[37m\n\n"
}
function echoLine {
local color="${2:-$YELLOW}"
echo -en "\e$color\n-- " $1 "\e[37m"
}
function echoWarn {
echo -en "\e[38m\n--------------------------------------------------------------------------------\n--\n-- " $1 "\n--\n--------------------------------------------------------------------------------\e[37m\n"
}
function echoFail {
echo -en "\e[31m\n--------------------------------------------------------------------------------\n--\n-- " $1 "\n--\n--------------------------------------------------------------------------------\e[37m\n"
}
function echoConfirm {
echo -en "\n\e[35m------------------------------------------------------------------------------------\n--\n"
echo -en "-- $1?\n"
read -p "[Y/n] " -n 1 -r
echo -en "\n--\n-----------------------------------------------------------------------------------\e[37m\n"
}
#END HELPER FUNCTIONS <<<<<<<<
INSTALL=1
TAGNAME="4.1.5-buster"
# Get the options
while getopts ":dt:" option; do
case $option in
d) INSTALL=0;;
t) # Enter a name
# echo $OPTARG
TAGNAME=$OPTARG;;
\?) # Invalid option
echo "Error: Invalid option"
exit;;
esac
done
#echo $0
DOCKER='/usr/bin/docker'
if [ "$#" -lt 1 ]; then
echo -en "\nUsage: -t TAGNAME \ni.e. : \e[3m $0 -t 4.1.5-buster\n\e[0m"
exit 0;
fi
if test -f "$DOCKER"
then
echoSection "Ok you have docker installed, let's get going" $GREEN
else
echoConfirm "hmmm Docker is not installed yet, would you like to install (needs reboot)"
if [[ $REPLY =~ ^[Yy]$ ]]
then
curl -sSL https://get.docker.com | sh
sudo usermod -aG docker pi
echoSection "Docker is now installed, but you need to reboot and run this script again."
exit 0;
else
echoWarn "Ok, not running this script any further"
exit 0;
fi
fi
mkdir -p ./docker_haxe/
sudo mkdir -p /usr/local/share/haxe/
#sudo mkdir -p /usr/local/share/haxe/std
echoSection "running/getting docker image ${TAGNAME}";
docker run haxe:${TAGNAME}
echoLine "getting CONTAINERID"
CONTAINERID=`docker ps -aq --latest`
echoLine "copying from container: $CONTAINERID"
docker cp $CONTAINERID:/usr/local/bin/haxe ./docker_haxe/
docker cp $CONTAINERID:/usr/local/bin/haxelib ./docker_haxe/
docker cp $CONTAINERID:/usr/local/share/haxe/std ./docker_haxe/
echoLine "creative haxe-binaries.tgz archive for future use"
tar zcf haxe-binaries.tgz ./docker_haxe
if [ $INSTALL -eq 1 ]
then
cd ./docker_haxe/
echoSection "copying haxe and haxelib binaries to /usr/local/bin/"
sudo cp haxe /usr/local/bin/
sudo cp haxelib /usr/local/bin/
echoSection "copying haxe std lib to to /usr/local/share/haxe/std"
sudo cp -R std /usr/local/share/haxe/
echoSection "adding HAXE_STD_PATH to ~/.baschrc"
if [ `grep 'export HAXE_STD_PATH' ~/.bashrc | wc -l` -eq 0 ]; then
echo -e "\nexport HAXE_STD_PATH=\"/usr/local/share/haxe/std\"" >> ~/.bashrc
fi
echoSection "installing neko"
sudo apt install neko
echoSection "installing some dependencies so we can compile lime"
sudo apt install libdrm-dev libgbm-dev libx11-dev libxext-dev libgles2-mesa-dev libasound2-dev libudev-dev
sudo apt install -y libxcursor-dev libxinerama-dev libxi-dev libxrandr-dev libdbus-1-dev libpulse-dev
echoConfirm "Would you like to setup a Development directory for haxe and haxelib?\n-- ~/Development/haxe/dev and ~/Development/haxe/lib"
if [[ $REPLY =~ ^[Yy]$ ]]
then
mkdir -p ~/Development/haxe/{dev,lib}
fi
fi
echoSection "All Done"
haxe -v
@enumm
Copy link

enumm commented Nov 12, 2020

Hello,
it seems
docker cp $CONTAINERID:/usr/local/bin/haxelib ./docker_haxe/
docker cp $CONTAINERID:/usr/local/share/haxe/std ./docker_haxe/
doesn't work

copying from a771f1e9f958
no such directory
no such directory
cp: -r not specified; omitting directory 'haxe'
cp: cannot stat 'haxelib': No such file or directory
cp: cannot stat 'std': No such file or directory

@gepatto
Copy link
Author

gepatto commented Nov 12, 2020

Ah yes I see, I forgot to create the ./docker_haxe directory in this script.
It was already on my machine. I'll update the gist. could you try again?

@enumm
Copy link

enumm commented Nov 13, 2020

Hello,

I needed to add
mkdir -p /usr/local/share/haxe/std

now it copied all files.

also previously it would copy std content directly to ./docker_haxe/
but today it coppied it to ./docker_haxe/std and its working

could export HAXE_STD_PATH="/usr/local/share/haxe/std"
be automated?

@gepatto
Copy link
Author

gepatto commented Nov 13, 2020

Thanks for testing the script. I admit the script was made on a Pi that already had some stuff on it.
You can put HAXE_STD_PATH in .bashrc or .profile
or automate it by adding the following to the script

if [ `grep 'export HAXE_STD_PATH' ~/.bashrc | wc -l` -eq 0 ]; then
   echo -e "\nexport HAXE_STD_PATH=\"/usr/local/share/haxe/std\"" >> ~/.bashrc
fi

@gepatto
Copy link
Author

gepatto commented Nov 13, 2020

ow and don't forget to install neko

sudo apt install neko

@loudoweb
Copy link

loudoweb commented Apr 2, 2021

I have 2 errors in this file:

3: install_haxe.sh: function: not found
5: install_haxe.sh: Syntax error: "}" unexpected

@gepatto
Copy link
Author

gepatto commented Apr 2, 2021

Are you running this on RaspberryPi OS (buster)?
did you make it runable?
chmod +x install_haxe_from_docker.sh
and the run it:
./install_haxe_from_docker.sh 4.1.5-buster
?

@loudoweb
Copy link

loudoweb commented Apr 2, 2021

Thanks!
forgot to make it runable...
It seems that it needs the version like this: ./install_haxe_from_docker.sh 4.1.5
Also, sh install_haxe_from_docker.sh does not work, so I believed my attempt was totally wrong :S
Waiting for all the stuff to download...thanks!

@gepatto
Copy link
Author

gepatto commented Apr 2, 2021

Ah yes sh won’t work because i’m using bash (see first line)
Maybe I should have put this in the description..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment