diff --git a/build.sh b/build.sh index 13de5bf..b1a13fa 100755 --- a/build.sh +++ b/build.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash # Build Steps -# 1. update version number in `gotop.go`, `PKGBUILD`, and `install.sh` +# 1. update version number in `gotop.go` and `install.sh` # 2. run this script # 3. publish binaries on GitHub -# 4. push changes to GitHub -# 5. push `PKGBUILD` to AUR +# 4. delete `builds` folder +# 5. push changes to GitHub VERSION=$(go run gotop.go -v) diff --git a/packages/AUR/PKGBUILD b/packages/AUR/PKGBUILD deleted file mode 100644 index e0d46c1..0000000 --- a/packages/AUR/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# Maintainer: Caleb Bassi - -pkgname=gotop -pkgver=1.1.0 -pkgrel=1 -pkgdesc="A TUI graphical activity monitor inspired by gtop" -arch=("x86_64" "i686") -url="https://github.com/cjbassi/gotop" -license=("AGPLv3") -provides=("gotop") - -case "$CARCH" in - x86_64) - _arch=amd64 - ;; - i686) - _arch=386 - ;; -esac - -source=("https://github.com/cjbassi/gotop/releases/download/$pkgver/gotop-$pkgver-linux_$_arch.tgz") -md5sums=("SKIP") - -package() { - mkdir -p "$pkgdir/usr/bin" - mv $srcdir/gotop $pkgdir/usr/bin -}