Skip to content

Instantly share code, notes, and snippets.

@ColinDuquesnoy
Last active August 29, 2015 14:12
Show Gist options
  • Save ColinDuquesnoy/0c42b7114eea97fdc764 to your computer and use it in GitHub Desktop.
Save ColinDuquesnoy/0c42b7114eea97fdc764 to your computer and use it in GitHub Desktop.
Install GnuCobol 2.0 (unstable) on Archlinux/KaOS
sudo pacman -S subversion help2man
echo "### Checking out GnuCobol:"
svn checkout svn://svn.code.sf.net/p/open-cobol/code/trunk open-cobol-code;
cd open-cobol-code/gnu-cobol;
echo "### Configuring:"
./configure --prefix=/usr;
echo "### Building:"
make -s;
echo "### Installing:"
sudo make -s install;
echo "### GnuCobol version:"
cobc --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment