piston/packages/brainfuck/2.7.3/build.sh

23 lines
388 B
Bash
Raw Normal View History

2021-03-19 10:13:27 +01:00
#!/usr/bin/env bash
# Put instructions to build your package in here
PREFIX=$(realpath $(dirname $0))
git clone https://github.com/fabianishere/brainfuck.git
2021-03-19 10:34:41 +01:00
cd brainfuck
2021-03-20 00:35:36 +01:00
git checkout 6ea0f173989df4d5ce698e1f3c95f2cd0535ebd1
2021-03-19 10:34:41 +01:00
mkdir -p build
2021-03-19 10:13:27 +01:00
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$PREFIX/ -DENABLE_EDITLINE=OFF
2021-03-19 10:13:27 +01:00
make -j$(nproc)
make install -j$(nproc)
2021-03-19 10:34:41 +01:00
cd ../../
rm -rf brainfuck