This commit is contained in:
YellowJacketLinux 2024-10-16 03:23:55 -07:00
parent 7fea6e2d6f
commit c30de4bcfd
2 changed files with 61 additions and 4 deletions

51
14-libksba.sh Normal file
View File

@ -0,0 +1,51 @@
#!/bin/bash
if [ "`whoami`" == "root" ]; then
echo "Danger, Will Robinson!"
echo "Do not execute me as r00t"
exit 1
fi
TARBALL="libksba-1.6.7.tar.bz2"
DNL="https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.6.7.tar.bz2"
SHA256="cf72510b8ebb4eb6693eef765749d83677a03c79291a311040a5bfd79baab763"
[ -d libksba-1.6.7 ] && rm -rf libksba-1.6.7
if [ ! -f ${TARBALL} ]; then
wget ${DNL}
if [ $? -ne 0 ]; then
echo "Could not retrieve ${DNL}"
echo "Sorry."
exit 1
fi
fi
CHECK="`sha256sum ${TARBALL} |awk ' { print $1 } ' `"
if [ "${CHECK}" != "${SHA256}" ]; then
echo "${TARBALL} does not match expected SHA256. Sorry."
exit 1
fi
tar -jxf ${TARBALL} && cd libksba-1.6.7
./configure --prefix=/usr
if [ $? -ne 0 ]; then
echo "Configure script failed for libksba. Sorry."
exit 1
fi
make
if [ $? -ne 0 ]; then
echo "Failed building libksba. Sorry."
exit 1
fi
echo "running make check"
make check > libksba.check.log 2>&1
echo "Inspect libksba-1.6.7/libksba.check.log and if all good, as root:"
echo
echo " cd libksba-1.6.7"
echo " make install"
echo

View File

@ -30,8 +30,8 @@ Justification: Needed to build RPM itself. Depends upon UnZip for documentation.
Dependency Three: libgpg-error Dependency Three: libgpg-error
------------------------------ ------------------------------
Justification: Needed to build libgcrypt and libassuan. No build dependencies Justification: Needed to build libgcrypt, libassuan, and libksba. No build
outside of LFS. dependencies outside of LFS.
* Script: [`03-libgpg-error.sh`](03-libgpg-error.sh) * Script: [`03-libgpg-error.sh`](03-libgpg-error.sh)
* Status: Script Works * Status: Script Works
@ -112,11 +112,17 @@ Justification: Needed to build RPM. No build dependencies outside of LFS.
Dependency Thirteen: libassuan Dependency Thirteen: libassuan
------------------------------ ------------------------------
Justification: Needed to build GnuPG Justification: Needed to build GnuPG. Requires libgpg-error.
* Script: [`13-libassuan.sh`](13-libassuan.sh) * Script: [`13-libassuan.sh`](13-libassuan.sh)
* Status: Script Untested * Status: Script Untested
Dependency Fourteen: libksba
----------------------------
Justification: Needed to build GnuPG. Requires libgpg-error.
* Script: [`14-libksba.sh`](14-libksba.sh)
* Status: Script Untested