2021-03-24 21:39:17 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Grab the latest cow source from github
|
2021-08-31 17:08:13 +02:00
|
|
|
git clone -q https://github.com/Hydrazer/COW.git cow
|
2021-03-24 21:39:17 +01:00
|
|
|
|
|
|
|
# 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
|