diff --git a/.SRCINFO b/.SRCINFO index 5630da4..b05fc38 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,24 +1,22 @@ -generated-by = makedeb-makepkg - -pkgbase = lazygit-bin - pkgdesc = A simple terminal UI for git commands, written in Go with the gocui library - pkgver = 0.34 - 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.34/lazygit_0.34_Linux_arm64.tar.gz - sha256sums_aarch64 = 10a12ae1f59fb5b1877a650c9a2ce8c05b47d871dc210a16fd9bc31dedafad90 - source_armv6h = https://github.com/jesseduffield/lazygit/releases/download/v0.34/lazygit_0.34_Linux_armv6.tar.gz - sha256sums_armv6h = 04b6f3ba79f7b726a5f14152ebfe342280f7381e03c2982aa9c5af294a148e65 - source_i686 = https://github.com/jesseduffield/lazygit/releases/download/v0.34/lazygit_0.34_Linux_32-bit.tar.gz - sha256sums_i686 = 205298de0f8e36c744676b835b14713e5e783fedc49f830ac281e31583f2fb09 - source_x86_64 = https://github.com/jesseduffield/lazygit/releases/download/v0.34/lazygit_0.34_Linux_x86_64.tar.gz - sha256sums_x86_64 = 4216b48d02884173f0f784235a5fee52c4ab344713b0b873e27321b3df421879 - +generated-by = makedeb pkgname = lazygit-bin +pkgbase = lazygit-bin +pkgdesc = A simple terminal UI for git commands, written in Go with the gocui library +pkgrel = 1 +pkgver = 0.36.0 +url = https://github.com/jesseduffield/lazygit +arch = aarch64 +arch = armv6h +arch = i686 +arch = amd64 +conflicts = lazygit +license = MIT +provides = lazygit +source_aarch64 = https://github.com/jesseduffield/lazygit/releases/download/v0.36.0/lazygit_0.36.0_Linux_arm64.tar.gz +source_amd64 = https://github.com/jesseduffield/lazygit/releases/download/v0.36.0/lazygit_0.36.0_Linux_x86_64.tar.gz +source_armv6h = https://github.com/jesseduffield/lazygit/releases/download/v0.36.0/lazygit_0.36.0_Linux_armv6.tar.gz +source_i686 = https://github.com/jesseduffield/lazygit/releases/download/v0.36.0/lazygit_0.36.0_Linux_32-bit.tar.gz +sha256sums_aarch64 = 10a12ae1f59fb5b1877a650c9a2ce8c05b47d871dc210a16fd9bc31dedafad90 +sha256sums_amd64 = dc17a62f6f6efbeb5ba35abc182303bec17e62772be9bd8cf3e080640cb008b4 +sha256sums_armv6h = 04b6f3ba79f7b726a5f14152ebfe342280f7381e03c2982aa9c5af294a148e65 +sha256sums_i686 = 205298de0f8e36c744676b835b14713e5e783fedc49f830ac281e31583f2fb09 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4db98fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.deb +*.tar.gz +pkg/ +src/ diff --git a/PKGBUILD b/PKGBUILD index 6ffb2ef..a45bd64 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,22 @@ -# Maintainer: Edgar - pkgname=lazygit-bin -pkgver=0.34 +pkgver=0.36.0 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') +arch=('aarch64' 'armv6h' 'i686' 'amd64') 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") +source_amd64=("${url}/releases/download/v${pkgver}/lazygit_${pkgver}_Linux_x86_64.tar.gz") sha256sums_aarch64=('10a12ae1f59fb5b1877a650c9a2ce8c05b47d871dc210a16fd9bc31dedafad90') sha256sums_armv6h=('04b6f3ba79f7b726a5f14152ebfe342280f7381e03c2982aa9c5af294a148e65') sha256sums_i686=('205298de0f8e36c744676b835b14713e5e783fedc49f830ac281e31583f2fb09') -sha256sums_x86_64=('4216b48d02884173f0f784235a5fee52c4ab344713b0b873e27321b3df421879') +sha256sums_amd64=('dc17a62f6f6efbeb5ba35abc182303bec17e62772be9bd8cf3e080640cb008b4') package() { install -Dm755 "${srcdir}/lazygit" "${pkgdir}/usr/bin/lazygit"