rustbox 0.1.0

A rust implementation of the termbox library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

echo "Enter your password to install termbox"
sudo -v

echo "Fetching termbox source"
git clone https://github.com/nsf/termbox
cd termbox

echo "Configuring and installing termbox"
./waf configure --prefix=/usr
./waf
sudo ./waf install

echo "Cleaning up"
cd ../ && rm -rf termbox