piston/packages/cow/1.0.0/build.sh
Hydrazer c699688b36
fixed slurp for COW lang
forked the original repo by BigZaphod and fixed the slurping issue when reading stdin for the Moo and oom commands
2021-08-31 09:08:13 -06:00

12 lines
271 B
Bash
Executable file

#!/usr/bin/env bash
# Grab the latest cow source from github
git clone -q https://github.com/Hydrazer/COW.git cow
# Generate the cow binary into bin
mkdir -p bin
sed -i '1i#define NO_GREETINGS' cow/source/cow.cpp
g++ -o bin/cow cow/source/cow.cpp
# Cleanup
rm -rf cow