mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Added opensuse support for the install. Now getting an error relating
ncurses wget_wch after the libstrophe compile
This commit is contained in:
parent
037ca81821
commit
b2cb466227
@ -27,6 +27,14 @@ fedora_prepare()
|
|||||||
sudo yum -y install gcc git autoconf automake openssl-devel.$ARCH expat-devel.$ARCH ncurses-devel.$ARCH glib2-devel.$ARCH libnotify-devel.$ARCH libcurl-devel.$ARCH libXScrnSaver-devel.$ARCH libotr3-devel.$ARCH
|
sudo yum -y install gcc git autoconf automake openssl-devel.$ARCH expat-devel.$ARCH ncurses-devel.$ARCH glib2-devel.$ARCH libnotify-devel.$ARCH libcurl-devel.$ARCH libXScrnSaver-devel.$ARCH libotr3-devel.$ARCH
|
||||||
}
|
}
|
||||||
|
|
||||||
|
opensuse_prepare()
|
||||||
|
{
|
||||||
|
echo
|
||||||
|
echo Profanity installer...installing dependencies
|
||||||
|
echo
|
||||||
|
sudo zypper -n in gcc git automake autoconf libgnutls-openssl-devel expat libexpat-devel ncurses-devel glib2-devel libnotify-devel libcurl-devel libXScrnSaver-devel libotr-devel
|
||||||
|
}
|
||||||
|
|
||||||
cygwin_prepare()
|
cygwin_prepare()
|
||||||
{
|
{
|
||||||
echo
|
echo
|
||||||
@ -138,6 +146,8 @@ if [ "${OS}" = "Linux" ]; then
|
|||||||
DIST=fedora
|
DIST=fedora
|
||||||
elif [ -f /etc/debian_version ]; then
|
elif [ -f /etc/debian_version ]; then
|
||||||
DIST=debian
|
DIST=debian
|
||||||
|
elif [ -f /etc/os-release ]; then
|
||||||
|
DIST=opensuse
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo $OS | grep -i cygwin
|
echo $OS | grep -i cygwin
|
||||||
@ -159,6 +169,10 @@ debian) debian_prepare
|
|||||||
install_lib_strophe
|
install_lib_strophe
|
||||||
install_profanity
|
install_profanity
|
||||||
;;
|
;;
|
||||||
|
opensuse) opensuse_prepare
|
||||||
|
install_lib_strophe
|
||||||
|
install_profanity
|
||||||
|
;;
|
||||||
cygwin) cygwin_prepare
|
cygwin) cygwin_prepare
|
||||||
cyg_install_lib_strophe
|
cyg_install_lib_strophe
|
||||||
cyg_install_profanity
|
cyg_install_profanity
|
||||||
|
Loading…
Reference in New Issue
Block a user