freedombone-utils-guile 3.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Recent version of guile
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2017 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. GUILE_VERSION='2.2.0'
  31. GUILE_HASH='c707b9cf6f97ecca3a4e3e704e62b83f95f1aec28ed1535f5d0a1d36af07a015'
  32. EIGHTSYNC_REPO="git://git.savannah.gnu.org/8sync.git"
  33. EIGHTSYNC_COMMIT='8cbb7f22227c0afdd3b0bd758ebec0efba2fa1e1'
  34. function install_8sync {
  35. apt-get -qy install flex libunistring-dev libgc-dev autoconf texinfo
  36. if [ ! -d $INSTALL_DIR ]; then
  37. mkdir $INSTALL_DIR
  38. fi
  39. cd $INSTALL_DIR
  40. git_clone $EIGHTSYNC_REPO $INSTALL_DIR/eightsync
  41. cd $INSTALL_DIR/eightsync
  42. git checkout ${EIGHTSYNC_COMMIT} -b ${EIGHTSYNC_COMMIT}
  43. export GUILE_BASE_PATH=/opt/guile-${GUILE_VERSION}
  44. export GUILE_CFLAGS="-I${GUILE_BASE_PATH}/include"
  45. export GUILE_LIBS="-L${GUILE_BASE_PATH}/lib -lguile -lqthreads -ldl -ltermcap -lsocket -lnsl -lm"
  46. ./bootstrap.sh
  47. sed -i 's|PKG_CHECK_MODULES|##PKG_CHECK_MODULES|g' configure
  48. configure
  49. make
  50. make install
  51. export GUILE_LOAD_COMPILED_PATH="$INSTALL_DIR/8sync"
  52. }
  53. function install_guile {
  54. # Currently this only works for x86_64
  55. read_config_param ARCHITECTURE
  56. if [[ ${ARCHITECTURE} != "x86_64" ]]; then
  57. return
  58. fi
  59. GUILE_ARCH='x86_64'
  60. apt-get -qy install flex libunistring-dev libgc-dev autoconf texinfo lzip wget
  61. if [ ! -d $INSTALL_DIR ]; then
  62. mkdir $INSTALL_DIR
  63. fi
  64. cd $INSTALL_DIR
  65. if [ ! -f guile-${GUILE_VERSION}-pack-${GUILE_ARCH}-linux-gnu.tar.lz ]; then
  66. wget https://ftp.gnu.org/gnu/guile/guile-${GUILE_VERSION}-pack-${GUILE_ARCH}-linux-gnu.tar.lz
  67. fi
  68. if [ ! -f guile-${GUILE_VERSION}-pack-${GUILE_ARCH}-linux-gnu.tar.lz ]; then
  69. echo 'Unable to download guile pack'
  70. exit 6735238
  71. fi
  72. CURR_GUILE_HASH=$(sha256sum guile-${GUILE_VERSION}-pack-${GUILE_ARCH}-linux-gnu.tar.lz | awk -F ' ' '{print $1}')
  73. if [[ "$CURR_GUILE_HASH" != "$GUILE_HASH" ]]; then
  74. echo 'Guile hash does not match'
  75. exit 7237625
  76. fi
  77. cd /
  78. tar xvf $INSTALL_DIR/guile-${GUILE_VERSION}-pack-${GUILE_ARCH}-linux-gnu.tar.lz
  79. if [ ! -d /opt/guile-${GUILE_VERSION}/bin ]; then
  80. echo 'Guile was not installed'
  81. exit 825269
  82. fi
  83. echo "export GUILE_PATH=/opt/guile-${GUILE_VERSION}/bin" >> ~/.bashrc
  84. echo 'export PATH=$PATH:$GUILE_PATH' >> ~/.bashrc
  85. }
  86. # NOTE: deliberately no exit 0