summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorlilac2020-07-10 17:34:38 +0800
committerlilac2020-07-10 17:34:38 +0800
commitf36c4457229c0e631d5165b398cc2775bb062ab7 (patch)
tree054ac534b24204174e43892e532386795bbef246
parent223d268a0b8c137ec51424970347d98d41e1470a (diff)
downloadaur-f36c4457229c0e631d5165b398cc2775bb062ab7.tar.gz
[lilac] updated to 0.6-2
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index eeb110670f2f..ac9480e1abc3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,11 @@
pkgbase = fgit-go
pkgdesc = A tool to do git operation with fastgit easily
pkgver = 0.6
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/fastgitorg/fgit-go
arch = x86_64
license = GPL3
+ makedepends = go
depends = git
depends = glibc
provides = fgit
diff --git a/PKGBUILD b/PKGBUILD
index 0ff30bf62b59..2542d3cd8e82 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,12 +4,13 @@
pkgname=fgit-go
pkgver=0.6
-pkgrel=1
+pkgrel=2
pkgdesc="A tool to do git operation with fastgit easily"
arch=('x86_64')
url="https://github.com/fastgitorg/fgit-go"
license=('GPL3')
depends=('git' 'glibc')
+makedepends=('go')
provides=('fgit')
conflicts=('fgit')
source=("$pkgname-$pkgver::git+$url#tag=$pkgver")
@@ -27,7 +28,7 @@ build() {
package() {
cd "$srcdir"/$pkgname-$pkgver
- install -Dm755 -t "$pkgdir"/usr/bin/ ./fgit-go
- install -Dm644 -t "$pkgdir"/usr/share/doc/fgit ./README.md
+ install -Dm755 -t "$pkgdir"/usr/bin/ ./fgit-go
+ install -Dm644 -t "$pkgdir"/usr/share/doc/fgit-go ./README.md
}