diff options
author | Caleb Maclennan | 2024-06-25 12:11:18 +0300 |
---|---|---|
committer | Caleb Maclennan | 2024-06-25 12:11:18 +0300 |
commit | 64bb9c34efb5562474834d56b7d8a62a5d4757e9 (patch) | |
tree | 4f696bc7454352aa6040c11e056f4655429c2e51 | |
parent | bf071f5d74de20da6c91466031b502051f9a3b59 (diff) | |
download | aur-64bb9c34efb5562474834d56b7d8a62a5d4757e9.tar.gz |
upgpkg: git-quick-git 0.0.0.r6.ge2b6a1f-1
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 24 |
2 files changed, 13 insertions, 17 deletions
@@ -1,16 +1,14 @@ pkgbase = git-quick-git pkgdesc = edit a subset of files from a git repository on any branch - pkgver = 0.0.0.r5.ga948b44 + pkgver = 0.0.0.r6.ge2b6a1f pkgrel = 1 url = https://github.com/qwertzguy/git-quick arch = x86_64 license = MIT - makedepends = git depends = git provides = git-quick conflicts = git-quick - source = git://github.com/qwertzguy/git-quick.git#branch=master + source = git+https://github.com/qwertzguy/git-quick.git sha256sums = SKIP pkgname = git-quick-git - @@ -1,27 +1,25 @@ # Maintainer: Caleb Maclennan <caleb@alerque.com> pkgname=git-quick-git -pkgver=0.0.0.r5.ga948b44 +pkgver=0.0.0.r6.ge2b6a1f pkgrel=1 -_branch=master -pkgdesc="edit a subset of files from a git repository on any branch" -arch=('x86_64') +pkgdesc='edit a subset of files from a git repository on any branch' +arch=(x86_64) url="https://github.com/qwertzguy/${pkgname%-git}" -license=('MIT') -makedepends=('git') -depends=('git') +license=(MIT) +depends=(git) provides=("${pkgname%-git}") conflicts=("${pkgname%-git}") -source=("git://github.com/qwertzguy/${pkgname%-git}.git#branch=$_branch") +source=("git+$url.git") sha256sums=('SKIP') pkgver() { - cd "${pkgname%-git}" - git tag v0.0.0 8c8b03a ||: - git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' + cd "${pkgname%-git}" + git tag v0.0.0 8c8b03a ||: + git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } package() { - cd "${pkgname%-git}" - install -Dm 755 {.,"$pkgdir/usr/bin}/${pkgname%-git}" + cd "${pkgname%-git}" + install -Dm0755 -t "$pkgdir/usr/bin/" "${pkgname%-git}" } |