/var/lib/pcp/testsuite/mk.pcpversion is in pcp-testsuite 4.0.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #! /bin/sh
#
# given a dotted notation pcp version string, produce a single number
#
# Copyright (c) 1997-2002 Silicon Graphics, Inc. All Rights Reserved.
#
VERSION=$1
PCP_VER=`echo "$VERSION" \
| awk -F. '{printf "%d%02d%02d\n",$1,$2,$3}'`
[ -z "$PCP_VER" ] && PCP_VER=0
echo PCP_VER=$PCP_VER
|