commit cfabfdd865df2484aced3928c85735eb25e8a092 Author: Edgar Date: Thu Jan 27 19:16:40 2022 +0100 Initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..4f7cc92 --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..46a9e1e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Edgar + +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" +}