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.
25 lines
669 B
25 lines
669 B
#!/bin/bash
|
|
|
|
PKGNAME="$1"
|
|
[ -z "${PKGNAME}" ] && echo "You must specify a package name !" && exit 1
|
|
TDE_VERSION="${2:-14.0.0}"
|
|
|
|
RPMDIR="$(rpm -E %{_rpmdir}.tde-${TDE_VERSION})"
|
|
RPMDIR_ARCH="${RPMDIR}/$(rpm -E %_target_cpu)"
|
|
RPMDIR_NOARCH="${RPMDIR}/noarch"
|
|
RPMDIRS="${RPMDIR_ARCH} ${RPMDIR_NOARCH}"
|
|
|
|
RPM_PKGNAME="$(get_rpm_package_name.sh ${PKGNAME})"
|
|
|
|
RPM=$(find ${RPMDIRS} -name "trinity-${RPM_PKGNAME}-[0-9]*.rpm" | sort -n | tail -n 1)
|
|
|
|
if [ ! -r "${RPM}" ]; then
|
|
RPM=$(find ${RPMDIRS} -name "${RPM_PKGNAME}-[0-9]*.rpm" | sort -n | tail -n 1)
|
|
if [ ! -r "${RPM}" ]; then
|
|
echo "Error, cannot find any package for '${PKGNAME}' !"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo $RPM
|