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