Updated AUR for 32 bit support

This commit is contained in:
Caleb Bassi 2018-02-19 22:26:56 -08:00
parent 8a32ce32ff
commit f9018aa076

View File

@ -4,11 +4,21 @@ pkgname=gotop
pkgver=1.0.1
pkgrel=1
pkgdesc="A TUI graphical activity monitor inspired by gtop"
arch=("x86_64")
arch=("x86_64" "i686")
url="https://github.com/cjbassi/gotop"
license=("AGPLv3")
provides=("gotop")
source=("https://github.com/cjbassi/gotop/releases/download/$pkgver/gotop-linux_amd64.tgz")
case "$CARCH" in
x86_64)
_arch=amd64
;;
i686)
_arch=386
;;
esac
source=("https://github.com/cjbassi/gotop/releases/download/$pkgver/gotop-linux_$_arch.tgz")
md5sums=("SKIP")
package() {