summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordrrossum2020-01-16 13:39:37 +0100
committerdrrossum2020-01-16 13:39:37 +0100
commitceae149bc040d888c55918afe147ee0bddd66e79 (patch)
treea6ae39cbc9043e9b56d6e6afc72a80b9844b9944
parentfccae8340bfba956d4fdd8e32b91d35b33c56305 (diff)
downloadaur-vim-dirdiff-git.tar.gz
Fix conflicts and makedepends
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 7 insertions, 1 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a1e1d183c71e..cab2eb0b1ab8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -7,7 +7,10 @@ pkgbase = vim-dirdiff-git
arch = any
groups = vim-plugins
license = custom
+ makedepends = git
depends = vim
+ provides = vim-dirdiff
+ conflicts = vim-dirdiff
source = vim-dirdiff-git::git+https://github.com/will133/vim-dirdiff
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 239ffb128f17..4985c41fba80 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,10 @@ pkgdesc="A plugin to diff and merge two directories recursively"
arch=(any)
url="https://github.com/will133/vim-dirdiff"
license=('custom')
-depends=(vim)
+depends=('vim')
+makedepends=('git')
+provides=('vim-dirdiff')
+conflicts=('vim-dirdiff')
groups=('vim-plugins')
install=vimdoc.install
source=("$pkgname"::'git+https://github.com/will133/vim-dirdiff')