Added libfox for xfe
This commit is contained in:
parent
225953b966
commit
40358b47cb
@ -43,6 +43,7 @@ idnmirror="https://ftp.gnu.org/gnu/libidn"
|
||||
lynxmirror="https://invisible-mirror.net/archives/lynx/tarballs"
|
||||
expatmirror="https://github.com/libexpat/libexpat/releases/download/R_2_2_7"
|
||||
utillinuxmirror="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.33"
|
||||
foxmirror="ftp://ftp.fox-toolkit.org/pub"
|
||||
|
||||
# filenames
|
||||
gcc="gcc-9.2.0.tar.xz"
|
||||
@ -77,6 +78,7 @@ lynx="lynx2.8.9rel.1.tar.gz"
|
||||
idn="libidn-1.36.tar.gz"
|
||||
expat="expat-2.2.7.tar.xz"
|
||||
utillinux="util-linux-2.33.2.tar.xz"
|
||||
fox="fox-1.6.57.tar.gz"
|
||||
|
||||
# work directories
|
||||
tmpdir="`pwd`/pkgsrc"
|
||||
@ -120,6 +122,7 @@ xcbutilsrcdir=${xcbutil//.tar.gz}
|
||||
xcbprotosrcdir=${xcbproto//.tar.gz}
|
||||
expatsrcdir=${expat//.tar.xz}
|
||||
utillinuxsrcdir=${utillinux//.tar.xz}
|
||||
foxsrcdir=${fox//.tar.gz}
|
||||
|
||||
if [ ! -d "$tmpdir" ]; then
|
||||
echo "Warning: package source directory not found, creating."
|
||||
@ -1132,6 +1135,27 @@ elfutils()
|
||||
|
||||
}
|
||||
|
||||
fox()
|
||||
{
|
||||
cd $tmpdir
|
||||
|
||||
# Grab sources for libfox
|
||||
if [ ! -d $foxsrcdir ]; then
|
||||
wget $foxmirror/$fox
|
||||
tar -xf $fox
|
||||
fi
|
||||
|
||||
cd $foxsrcdir
|
||||
|
||||
./configure --prefix=$freondir
|
||||
|
||||
make -j$corecount
|
||||
|
||||
make install
|
||||
|
||||
cd $tmpdir
|
||||
}
|
||||
|
||||
case $1 in
|
||||
all ) echo "Building all!"
|
||||
ncurses; nano; chttpd; gmp; mpfr; binutils; mpc; gcc; bash; isl; termcap; ircii; openssl; dvtm;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user