Last active
December 10, 2015 03:08
-
-
Save paaloeye/4372529 to your computer and use it in GitHub Desktop.
Install GNUstep to CentOS 6 from source code
This file contains hidden or 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
# Install prerequsites | |
# NOTE: libffi version >= 3.0.5 | |
yum install libxml2-devel libxslt-devel gnutls libicu-devel libffi-devel | |
# Download source codes | |
svn co http://svn.gna.org/svn/gnustep/modules/cor | |
# Install gnu-make | |
cd make | |
./configure && make && make install | |
# Install gnu-base | |
cd base | |
./configure && make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment