diff options
author | neodarz <neodarz@neodarz.net> | 2017-11-23 23:34:06 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-11-23 23:34:22 +0100 |
commit | 4f482911d55e0a61142d33265689c110536c0db9 (patch) | |
tree | cb72e87c395cb3b686b41f9350204a13a967741e | |
parent | d1dce10ee3af03a7e0196c91b6a345c27cd453a8 (diff) | |
download | grv-git-4f482911d55e0a61142d33265689c110536c0db9.tar.xz grv-git-4f482911d55e0a61142d33265689c110536c0db9.zip |
Replace '$(pwd)/' by '$srcdir/'
Diffstat (limited to '')
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ pkgbase = grv-git pkgdesc = terminal interface for viewing git repositories - pkgver = r227.4ecb757 - pkgrel = 2 + pkgver = r229.121ee06 + pkgrel = 1 url = https://github.com/rgburke/grv arch = i686 arch = x86_64 @@ -2,8 +2,8 @@ _pkgname=grv pkgname=$_pkgname-git -pkgver=r227.4ecb757 -pkgrel=2 +pkgver=r229.121ee06 +pkgrel=1 pkgdesc="terminal interface for viewing git repositories" arch=('i686' 'x86_64') url="https://github.com/rgburke/$_pkgname" @@ -34,6 +34,6 @@ build() { package() { export GOROOT="$GOPATH" - install -Dm755 "$(pwd)/src/github.com/rgburke/grv/grv" "$pkgdir/usr/bin/$_pkgname" + install -Dm755 "$srcdir/src/github.com/rgburke/grv/grv" "$pkgdir/usr/bin/$_pkgname" } |