You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
748 B
26 lines
748 B
#!/bin/bash
|
|
|
|
PKGNAME="${1##*/}"
|
|
TDE_VERSION="${2:-14.0.0}"
|
|
|
|
[ -z "${PKGNAME}" ] && echo "You must specify a package name !" && exit 1
|
|
SPECFILE=$(get_specfile.sh ${PKGNAME} ${TDE_VERSION})
|
|
SPECDIR="${SPECFILE%/*}"
|
|
RPMPKGNAME="$(get_rpm_package_name.sh ${PKGNAME})"
|
|
|
|
[ ! -r "${SPECFILE}" ] && exit 2
|
|
|
|
while read var val; do
|
|
case "${var}" in
|
|
Version:*) VERSION="${val}";;
|
|
Source[0-9]*:|Source:|Patch[0-9]*:)
|
|
FILE=$(rpm --define "tde_pkg ${PKGNAME}" --define "tde_version ${TDE_VERSION}" --define "name ${RPMPKGNAME}" --define "version ${VERSION}" -E "${SPECDIR}/${val##*/}")
|
|
if [ -r "${FILE}" ]; then
|
|
echo "${FILE}"
|
|
else
|
|
echo "Warning: cannot find '${FILE}'" >&2
|
|
fi
|
|
;;
|
|
esac
|
|
done < "${SPECFILE}"
|