lfs-buildscripts/CH8Build/CH08.72-markupsafe.sh
YellowJacketLinux cd27507762 through man-db
2024-10-06 18:35:03 -07:00

25 lines
549 B
Bash

#!/bin/bash
source versions.sh
GLSOURCES="/sources"
pushd $GLSOURCES > /dev/null 2>&1 || myfail "Failed to move to ${GLSOURCES}"
[ -d MarkupSafe-${markupsafe_version} ] && rm -rf MarkupSafe-${markupsafe_version}
tar -zxf ${markupsafe_tarball}
cd MarkupSafe-${markupsafe_version}
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
if [ $? -ne 0 ]; then
myfail "Failed building MarkupSafe"
fi
pip3 install --no-index --no-user --find-links dist Markupsafe
if [ $? -ne 0 ]; then
myfail "Failed installing MarkupSafe"
fi