freebsd-dev/release/scripts/chkINDEX
Brian Somers e5f8196af6 Check the run dependencies, not the build dependencies
Spotted by: steve
Pointy hat: brian
2002-06-10 00:46:29 +00:00

21 lines
479 B
Bash
Executable File

#! /bin/sh
#
# $FreeBSD$
usage()
{
echo "$*" >&2
echo "This script must be run from the top level package directory" >&2
exit 1
}
[ $# -ge 1 ] && usage "usage: chkINDEX"
[ -f INDEX ] || usage "INDEX file not found"
echo Checking for missing files
sed 's,^\([^|]*\)|.*,All/\1.tgz,' INDEX | xargs ls -l >/dev/null
echo Checking for missing dependents
awk -F'|' '{print $9}' INDEX | sed 's/ /\
/g' | sort -u | sed -e /^$/d -e 's/\(.*\)/All\/\1.tgz/' | xargs ls -l >/dev/null