1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Set version to 0.4.5

This commit is contained in:
James Booth 2014-11-07 00:17:40 +00:00
parent 9578a0b36a
commit 8120c9ebb0
3 changed files with 3 additions and 61 deletions

View File

@ -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

View File

@ -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

View File

@ -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