diff options
author | James Booth <boothj5@gmail.com> | 2014-11-07 00:17:40 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-11-07 00:17:40 +0000 |
commit | 8120c9ebb02288804d91313cbae39905743b3461 (patch) | |
tree | dd36437ee9f757004103bc9e42423e42cc96a21a | |
parent | 9578a0b36a11c8e6a774b8a18acb3251881ea124 (diff) | |
download | profani-tty-8120c9ebb02288804d91313cbae39905743b3461.tar.gz |
Set version to 0.4.5
-rw-r--r-- | configure.ac | 2 | ||||
-rwxr-xr-x | install-all.sh | 2 | ||||
-rwxr-xr-x | upgrade.sh | 60 |
3 files changed, 3 insertions, 61 deletions
diff --git a/configure.ac b/configure.ac index f94a2784..6dfde305 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AS_CASE([$host_os], [cygwin], [PLATFORM="cygwin"], [PLATFORM="nix"]) -PACKAGE_STATUS="development" +PACKAGE_STATUS="release" ### Get git branch and revision if in development if test "x$PACKAGE_STATUS" = xdevelopment; then diff --git a/install-all.sh b/install-all.sh index cc32d8fd..7970804b 100755 --- a/install-all.sh +++ b/install-all.sh @@ -74,6 +74,7 @@ install_lib_strophe() echo git clone git://github.com/strophe/libstrophe.git cd libstrophe + git checkout 0.8.7 ./bootstrap.sh ./configure --prefix=$1 make @@ -102,6 +103,7 @@ cyg_install_lib_strophe() echo git clone git://github.com/strophe/libstrophe.git cd libstrophe + git checkout 0.8.7 ./bootstrap.sh ./bootstrap.sh # second call seems to fix problem on cygwin ./configure --prefix=/usr diff --git a/upgrade.sh b/upgrade.sh deleted file mode 100755 index e2ed3d3b..00000000 --- a/upgrade.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -linux_upgrade() -{ - echo - echo Profanity installer... upgrading Profanity - echo - ./bootstrap.sh - ./configure - make clean - make - sudo make install - echo - echo Profanity installer... upgrade complete! - echo - echo Type \'profanity\' to run. - echo -} - -cygwin_upgrade() -{ - echo - echo Profanity installer... upgrading Profanity - echo - export LIBRARY_PATH=/usr/local/lib - ./bootstrap.sh - ./configure - make clean - make - make install - echo - echo Profanity installer... upgrade complete! - echo - echo Type \'profanity\' to run. - echo -} - -OS=`uname -s` -SYSTEM=unknown - -if [ "${OS}" = "Linux" ]; then - SYSTEM=linux -else - echo $OS | grep -i cygwin - if [ "$?" -eq 0 ]; then - SYSTEM=cygwin - fi -fi - -case "$SYSTEM" in -unknown) echo The upgrade script will not work on this OS. - echo Try a manual upgrade instead. - exit - ;; -linux) linux_upgrade - ;; -cygwin) cygwin_upgrade - ;; -esac - |