| |
---|
| | # Bootstrapping |
---|
| | |
---|
| | bootstrap-build: |
---|
| | @echo "Make sure you have the OS development tools installed!" |
---|
| | sudo yum -y install texinfo |
---|
| | ${BREW} install ${BOOTSTRAP} |
---|
| | |
---|
| | bootstrap-release: tidyup |
---|
| | cd ${INSTALLDIR} && mv -v ${TOOLS} ${TOOLS}-bootstrap-${DATESTAMP} |
---|
| |
---|
| | # Full tools set |
---|
| | |
---|
| | full-build: |
---|
| | @echo "Make sure the bootstrap is installed at ${TOOLSDIR}" |
---|
| | sudo yum -y install autoconf automake patch perl |
---|
| | sudo yum -y install autoconf automake patch perl texinfo |
---|
| | ${BREW} install ${LANGS} |
---|
| | ln -nfs ${INSTALLDIR}/${TOOLS}/bin/python3 ${INSTALLDIR}/${TOOLS}/bin/python |
---|
| | ln -nfs ${INSTALLDIR}/${TOOLS}/bin/pip3 ${INSTALLDIR}/${TOOLS}/bin/pip |
---|
| | pip install ${PIPMODULES} -U --ignore-installed |
---|
| |
---|
| | |