makedeb


tgpt-bin 2.8.1-0


ChatGPT in terminal without needing API keys

Click here to go back to the commit logs for tgpt-bin.

Commit:


Hash: 44fc4705ae0b0080b26f0a2963f1cdc79efe1e59

Message: useful commit message

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 2d74297..ed9917a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,12 @@
 pkgbase = tgpt-bin
 	pkgdesc = ChatGPT in terminal without needing API keys
 	pkgver = 1.2.0
-	pkgrel = 2
+	pkgrel = 3
 	url = https://github.com/aandrew-me/tgpt
 	arch = x86_64
 	arch = aarch64
 	arch = i386
+	arch = i686
 	license = GPL-3.0
 	source = https://github.com/aandrew-me/tgpt/releases/download/v1.2.0/tgpt-linux-amd64
 	md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 2f76a05..3264d01 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,9 @@
 # Maintainer: George Woodall <georgewoodall82@gmail.com>
 pkgname=tgpt-bin
 pkgver=1.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="ChatGPT in terminal without needing API keys"
-arch=("x86_64" "aarch64" "i386")
+arch=("x86_64" "aarch64" "i386" "i686")
 url="https://github.com/aandrew-me/tgpt"
 license=('GPL-3.0')
 #makedepends=('')
@@ -13,7 +13,7 @@ then
 elif [ $CARCH == "aarch64" ]
 then
   	ARCHY=arm64
-elif [ $CARCH == "i386" ]
+elif [ $CARCH == "i386" || $CARCH == "i686" ]
 then
 	ARCHY=i386
 else