Last active
January 6, 2020 18:17
-
-
Save chriswayg/7a9b6a876e65fa90e214286d03c73de1 to your computer and use it in GitHub Desktop.
Compile macserial on grml using build-linux.tool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get -y install build-essential | |
mkdir -pv /home/grml/build | |
cd /home/grml/build | |
git clone https://github.com/chriswayg/MacInfoPkg.git | |
cd /home/grml/build/MacInfoPkg/macserial/ | |
./build-linux.tool | |
mkdir -pv /home/grml/bin/ | |
cp -v /home/grml/build/MacInfoPkg/macserial/bin/tmp/* /home/grml/bin/ | |
echo "zipped release file is in /home/grml/build/MacInfoPkg/macserial/bin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment