diff options
author | Luis Martinez | 2021-06-11 16:40:56 -0500 |
---|---|---|
committer | Luis Martinez | 2021-06-11 16:40:56 -0500 |
commit | b8cce955ac0bca3e820558cef082551ceec0a4c9 (patch) | |
tree | b44b5671f76d44913123f894ccdd1891cc6efde0 | |
parent | a01f7ea949f81ca2947853f25bb376d73ed59562 (diff) | |
download | aur-b8cce955ac0bca3e820558cef082551ceec0a4c9.tar.gz |
add provides and conflicts
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -6,6 +6,8 @@ pkgbase = image-roll-bin arch = x86_64 license = MIT depends = gtk3 + provides = image-roll + conflicts = image-roll source = https://github.com/weclaw1/image-roll/releases/download/1.0.0/image-roll-1.0.0 source = https://raw.githubusercontent.com/weclaw1/image-roll/1.0.0/LICENSE source = https://raw.githubusercontent.com/weclaw1/image-roll/1.0.0/README.md @@ -9,6 +9,8 @@ arch=('x86_64') url="https://github.com/weclaw1/image-roll" license=('MIT') depends=('gtk3') +provides=("$_pkgname") +conflicts=("$_pkgname") source=("$url/releases/download/$pkgver/$_pkgname-$pkgver" "https://raw.githubusercontent.com/weclaw1/$_pkgname/$pkgver/LICENSE" "https://raw.githubusercontent.com/weclaw1/$_pkgname/$pkgver/README.md") |