Codebase list rplay / 4a61efa7-9af6-4b30-9ee7-7e5e0353b2d7/main version
4a61efa7-9af6-4b30-9ee7-7e5e0353b2d7/main

Tree @4a61efa7-9af6-4b30-9ee7-7e5e0353b2d7/main (Download .tar.gz)

version @4a61efa7-9af6-4b30-9ee7-7e5e0353b2d7/mainraw · history · blame

#!/bin/sh

if [ "$srcdir" = "" ]
then
    srcdir="."
fi

VERSION=`awk ' \
   BEGIN { major = ""; minor = ""; patchlevel = ""; status = ""; } \
   /RPLAY_MAJOR_VERSION/ { major = $3 } \
   /RPLAY_MINOR_VERSION/ { minor = $3 } \
   /RPLAY_PATCHLEVEL/ { patchlevel = $3 } \
   /RPLAY_STATUS/ { status = $3 } \
   END { printf("%s.%s.%s%s", major, minor, patchlevel, status) } \
' $srcdir/include/version.h`
VERSION=`echo $VERSION | sed 's/"//g'`

echo $VERSION