mirror of
https://github.com/YellowJacketLinux/lfs-rpmify.git
synced 2025-01-23 14:32:11 +08:00
libksba
This commit is contained in:
parent
7fea6e2d6f
commit
c30de4bcfd
51
14-libksba.sh
Normal file
51
14-libksba.sh
Normal 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
|
||||
|
14
README.md
14
README.md
@ -30,8 +30,8 @@ Justification: Needed to build RPM itself. Depends upon UnZip for documentation.
|
||||
Dependency Three: libgpg-error
|
||||
------------------------------
|
||||
|
||||
Justification: Needed to build libgcrypt and libassuan. No build dependencies
|
||||
outside of LFS.
|
||||
Justification: Needed to build libgcrypt, libassuan, and libksba. No build
|
||||
dependencies outside of LFS.
|
||||
|
||||
* Script: [`03-libgpg-error.sh`](03-libgpg-error.sh)
|
||||
* Status: Script Works
|
||||
@ -112,11 +112,17 @@ Justification: Needed to build RPM. No build dependencies outside of LFS.
|
||||
Dependency Thirteen: libassuan
|
||||
------------------------------
|
||||
|
||||
Justification: Needed to build GnuPG
|
||||
Justification: Needed to build GnuPG. Requires libgpg-error.
|
||||
|
||||
* Script: [`13-libassuan.sh`](13-libassuan.sh)
|
||||
* Status: Script Untested
|
||||
|
||||
|
||||
Dependency Fourteen: libksba
|
||||
----------------------------
|
||||
|
||||
Justification: Needed to build GnuPG. Requires libgpg-error.
|
||||
|
||||
* Script: [`14-libksba.sh`](14-libksba.sh)
|
||||
* Status: Script Untested
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user