From: Roger Shimizu <rogershimizu@gmail.com>
Date: Thu, 19 May 2016 22:43:54 +0900
Subject: remove dependency on git command

Get version from debian/changelog, instead of "git describe" command
---
 version.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/version.sh b/version.sh
index 8329518..d62e771 100755
--- a/version.sh
+++ b/version.sh
@@ -17,7 +17,7 @@
 # Note that the RELEASE-VERSION file should *not* be checked into git;
 # please add it to your top-level .gitignore file.
 
-version=$(git describe)
+version=$(dpkg-parsechangelog --show-field Version)
 if [ -n ${version} ]; then
     # If we got something from git-describe, write the version to the
     # output file.
