Initial commit

This commit is contained in:
Edgar 2022-01-27 19:16:40 +01:00
commit cfabfdd865
2 changed files with 49 additions and 0 deletions

24
.SRCINFO Normal file
View File

@ -0,0 +1,24 @@
generated-by = makedeb-makepkg
pkgbase = lazygit-bin
pkgdesc = A simple terminal UI for git commands, written in Go with the gocui library
pkgver = 0.32.2
pkgrel = 1
url = https://github.com/jesseduffield/lazygit
arch = aarch64
arch = armv6h
arch = i686
arch = x86_64
license = MIT
provides = lazygit
conflicts = lazygit
source_aarch64 = https://github.com/jesseduffield/lazygit/releases/download/v0.32.2/lazygit_0.32.2_Linux_arm64.tar.gz
sha256sums_aarch64 = 7a6cc2d42297753680248b93cf478aea1d2394649f8c2ff08f64a2828a481a41
source_armv6h = https://github.com/jesseduffield/lazygit/releases/download/v0.32.2/lazygit_0.32.2_Linux_armv6.tar.gz
sha256sums_armv6h = 9c2cf474f6300218d2f7e08aa4bd117cbfb4c9bb589a87452d6cc474d4fab498
source_i686 = https://github.com/jesseduffield/lazygit/releases/download/v0.32.2/lazygit_0.32.2_Linux_32-bit.tar.gz
sha256sums_i686 = d13f4a5291771d7909b8da311b00e3d09006739d4754d7028418c24c85fdc4f5
source_x86_64 = https://github.com/jesseduffield/lazygit/releases/download/v0.32.2/lazygit_0.32.2_Linux_x86_64.tar.gz
sha256sums_x86_64 = df9079e303f9e8df08e4c41ec9bd045bf1168d327baad86eda33a0fe02eea360
pkgname = lazygit-bin

25
PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Edgar <Edgar{at}AnotherFoxGuy.com>
pkgname=lazygit-bin
pkgver=0.32.2
pkgrel=1
pkgdesc='A simple terminal UI for git commands, written in Go with the gocui library'
url="https://github.com/jesseduffield/lazygit"
license=('MIT')
provides=("lazygit")
conflicts=("lazygit")
arch=('aarch64' 'armv6h' 'i686' 'x86_64')
source_aarch64=("${url}/releases/download/v${pkgver}/lazygit_${pkgver}_Linux_arm64.tar.gz")
source_armv6h=("${url}/releases/download/v${pkgver}/lazygit_${pkgver}_Linux_armv6.tar.gz")
source_i686=("${url}/releases/download/v${pkgver}/lazygit_${pkgver}_Linux_32-bit.tar.gz")
source_x86_64=("${url}/releases/download/v${pkgver}/lazygit_${pkgver}_Linux_x86_64.tar.gz")
sha256sums_aarch64=('7a6cc2d42297753680248b93cf478aea1d2394649f8c2ff08f64a2828a481a41')
sha256sums_armv6h=('9c2cf474f6300218d2f7e08aa4bd117cbfb4c9bb589a87452d6cc474d4fab498')
sha256sums_i686=('d13f4a5291771d7909b8da311b00e3d09006739d4754d7028418c24c85fdc4f5')
sha256sums_x86_64=('df9079e303f9e8df08e4c41ec9bd045bf1168d327baad86eda33a0fe02eea360')
package() {
install -Dm755 "${srcdir}/lazygit" "${pkgdir}/usr/bin/lazygit"
}