Skip to content

Instantly share code, notes, and snippets.

@thatmattlove
Last active December 10, 2019 00:39
Show Gist options
  • Save thatmattlove/dbb07719c7f04064649a25e6e9ff5484 to your computer and use it in GitHub Desktop.
Save thatmattlove/dbb07719c7f04064649a25e6e9ff5484 to your computer and use it in GitHub Desktop.
bird requirements
#!/bin/bash
# Since the BIRD docs are the suck, and every time I have to install BIRD it takes me a full 30 minutes
# to figure out which libraries are missing on vanilla Ubuntu and install them, try again, rinse,
# repeat, here's a script to do it for you.
DEPS="m4 bison flex libncurses5-dev libreadline-dev"
install_deps() {
sudo apt install -y $DEPS
}
install_deps
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment