diff options
author | Falk Alexander Seidl | 2018-05-08 09:15:27 +0200 |
---|---|---|
committer | Falk Alexander Seidl | 2018-05-08 09:15:27 +0200 |
commit | 7f2273950c8db4c3fdf0221617fe0b97a90e17b5 (patch) | |
tree | 3ed1b4f79970b1b4c8b3c928ab0300a23f3516a3 | |
parent | 78fcd10cff715ea83ceff1c00a205eb96fbc13c4 (diff) | |
download | aur-7f2273950c8db4c3fdf0221617fe0b97a90e17b5.tar.gz |
fix pkver generating; add conflics and provides
-rw-r--r-- | PKGBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -2,19 +2,21 @@ pkgname=fractal-git _gitname=fractal -pkgver=r563.b26ffa9 -pkgrel=2 +pkgver=r582.d6145e8 +pkgrel=1 pkgdesc="Matrix.org gtk+ client" arch=('i686' 'x86_64') license=('GPL3') url="https://gitlab.gnome.org/World/fractal" depends=('gtk3') +conflics=('fractal') +provides=('fractal') makedepends=('gtk3' 'rust' 'pkg-config' 'git' 'meson') -source=("https://gitlab.gnome.org/World/fractal.git") +source=("git+https://gitlab.gnome.org/World/fractal.git") md5sums=('SKIP') pkgver() { - cd "${_gitname}" + cd "${srcdir}/${_gitname}/" printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } |