move to IRSSI...
This commit is contained in:
parent
52cd20b7b6
commit
dc98f8e07d
@ -21,7 +21,7 @@ zlibmirror="https://zlib.net"
|
||||
termcapmirror="https://ftp.gnu.org/gnu/termcap"
|
||||
htopmirror="https://github.com/htop-dev/htop/archive"
|
||||
islmirror="http://isl.gforge.inria.fr"
|
||||
bitchxmirror="git://git.code.sf.net/p/bitchx/git"
|
||||
irssimirror="https://github.com/irssi/irssi/releases/download/1.2.2"
|
||||
|
||||
# filenames
|
||||
gcc="gcc-9.2.0.tar.xz"
|
||||
@ -36,6 +36,7 @@ gmp="gmp-6.1.2.tar.xz"
|
||||
mpfr="mpfr-4.0.2.tar.xz"
|
||||
mpc="mpc-1.1.0.tar.gz"
|
||||
isl="isl-0.19.tar.xz"
|
||||
irssi="irssi-1.2.2.tar.xz"
|
||||
|
||||
# work directories
|
||||
tmpdir="`pwd`/pkgsrc"
|
||||
@ -55,6 +56,7 @@ mpfrsrcdir=${mpfr//.tar.xz}
|
||||
binutilssrcdir=${binutils//.tar.xz}
|
||||
gmpsrcdir=${gmp//.tar.xz}
|
||||
islsrcdir=${isl//.tar.xz}
|
||||
irssisrcdir=${irssi//.tar.xz}
|
||||
|
||||
if [ ! -d "$tmpdir" ]; then
|
||||
echo "Warning: package source directory not found, creating."
|
||||
@ -384,21 +386,26 @@ isl()
|
||||
# IRC clients / servers
|
||||
|
||||
# Because why not! :D
|
||||
bitchx()
|
||||
irssi()
|
||||
{
|
||||
cd $tmpdir
|
||||
|
||||
if [ ! -d "bitchx" ]; then
|
||||
git clone $bitchxmirror bitchx
|
||||
# Downloading IRSSI sources
|
||||
if [ ! -f "$irssi" ]; then
|
||||
echo "Downloading IRSSI sources..."
|
||||
wget $irssimirror/$irssi
|
||||
tar -xf $irssi
|
||||
fi
|
||||
|
||||
cd bitchx
|
||||
cd $irssisrcdir
|
||||
|
||||
./configure --prefix=$freondir
|
||||
make -j20
|
||||
|
||||
make -j$corecount
|
||||
make install
|
||||
|
||||
cd $tmpdir
|
||||
|
||||
}
|
||||
|
||||
case $1 in
|
||||
|
Loading…
x
Reference in New Issue
Block a user