fix: update install script and checksum

This commit is contained in:
Augusto Elesbão 2026-02-05 19:15:57 +01:00
parent bd437f2950
commit 166d621d7f
No known key found for this signature in database
GPG key ID: 15A61A97FFAE83F3
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
pkgbase = git-recursive
pkgdesc = Execute git operations in multiple repositories
pkgver = 0.3.1
pkgrel = 1
pkgrel = 2
url = https://github.com/aelesbao/git-recursive
arch = i686
arch = x86_64
@ -11,6 +11,6 @@ pkgbase = git-recursive
makedepends = make
depends = git
source = git-recursive-0.3.1.tar.gz::https://github.com/aelesbao/git-recursive/archive/refs/tags/0.3.1.tar.gz
sha256sums = ac16bb9e9af5e5f85149d4539431b836c2767a6cfd81ba2f267a8996d756666d
sha256sums = 343cba10f81c1ef6d65fbd2a1a9211f35da7ac2e065f5535d50c800365da8e30
pkgname = git-recursive

View file

@ -1,7 +1,7 @@
# Maintainer: Augusto Elesbão <aelesbao@gmail.com>
pkgname=git-recursive
pkgver=0.3.1
pkgrel=1
pkgrel=2
pkgdesc="Execute git operations in multiple repositories"
arch=("i686" "x86_64" "armv6h" "armv7h")
url="https://github.com/aelesbao/git-recursive"
@ -18,7 +18,7 @@ sha256sums=('343cba10f81c1ef6d65fbd2a1a9211f35da7ac2e065f5535d50c800365da8e30')
package() {
cd "$srcdir/$pkgname-$pkgver"
PREFIX="$pkgdir" make install
install -Dm755 git-recursive "${pkgdir}/usr/bin/git-recursive"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}