Last active
August 29, 2015 14:12
-
-
Save ColinDuquesnoy/0c42b7114eea97fdc764 to your computer and use it in GitHub Desktop.
Install GnuCobol 2.0 (unstable) on Archlinux/KaOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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