diff options
author | Michael Göhler | 2015-12-20 11:46:12 +0100 |
---|---|---|
committer | Michael Göhler | 2015-12-20 11:46:12 +0100 |
commit | 235b64612a903ddc86c9a4b27f5c47e05ee22a63 (patch) | |
tree | 8030b771f04c19cd374d1c01a733e478ba0110e9 /PKGBUILD | |
parent | 8c680d53921a37ee513b03a7a210fac9dfa8afda (diff) | |
download | aur-235b64612a903ddc86c9a4b27f5c47e05ee22a63.tar.gz |
pkgver is not allowed to contain hyphens
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ pkgname=mdp-git _pkgname=mdp -pkgver=1.0.3 +pkgver=1.0.3.4.g43d2fc7 pkgrel=1 pkgdesc="A command-line based markdown presentation tool." arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ md5sums=('SKIP') pkgver() { cd "$srcdir/${_pkgname}" - git describe --tags + git describe --tags | sed "s/-/./g" } build() { |