1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/bin/bash
# Build RPMs and debs for Linux in the current directory using the
# source in the named directory
. /etc/os-release
if [ $ID = 'almalinux' ] || [ $ID = 'amzn' ] || [ $ID = 'centos' ] ||
[ $ID = 'debian' ] || [ $ID = 'fedora' ] || [ $ID = 'opensuse-leap' ] ||
[ $ID = 'ubuntu' ]; then
# Locate the source directory
if [ $# -eq 1 -a -d $1 ]; then
src_dir=$1
else
echo "Usage: $0 <source-directory>"
exit 1
fi
# Determine the HTCondor version number
condor_version=$(awk -F\" '/^set\(VERSION / {print $2}' ${src_dir}/CMakeLists.txt)
echo "Building HTCondor version ${condor_version}"
# Fake a BUILD-ID if one not provided
if [ ! -f BUILD-ID ]; then
date +'%Y%m%d%H%M' > BUILD-ID
fi
# Create the source tarball from the source directory
mkdir -p condor-${condor_version}
cp -p ${src_dir}/.??* condor-${condor_version} > /dev/null 2>&1
cp -pr ${src_dir}/* condor-${condor_version} > /dev/null 2>&1
tar cfz condor-${condor_version}.tgz condor-${condor_version}
rm -rf condor-${condor_version}
# Call the official build scripts
if [ -f /etc/debian_version ]; then
exec ${src_dir}/nmi_tools/glue/build/build_uw_deb.sh
else
exec ${src_dir}/nmi_tools/glue/build/build_uw_rpm.sh
fi
fi
echo 'Unsupported Linux Release'
exit 1
|