summarylogtreecommitdiffstats
path: root/git-pkgver.template
blob: cfd3da4c211ecb01ebf20532846cf967dc48348b (plain)
1
2
3
4
5
6
7
8
pkgver() {
  cd ${_gitname:-$pkgname}
  git describe --long --tags 2>/dev/null | sed 's/[^[:digit:]]*\(.\+\)-\([[:digit:]]\+\)-g\([[:xdigit:]]\{7\}\)/\1.r\2.g\3/;t;q1'
  [ ${PIPESTATUS[0]} -ne 0 ] && \
  # template input; name=git-revcount
}

# vim: filetype=sh