bottom/deployment/linux/arch/PKGBUILD_BIN.template
Clement Tsang b2a00d49f1
ci: Automatically build package files on release
Automatically builds packages for AUR, chocolatey, and homebrew on release.
2020-08-18 23:22:50 -04:00

24 lines
656 B
Text

# Maintainer: Clement Tsang (xoronth) <cjhtsang@uwaterloo.ca>
pkgname=bottom-bin
pkgver=$version
pkgrel=0
pkgdesc='A cross-platform graphical process/system monitor with a customizable interface and a multitude of features.'
provides=('bottom')
conflicts=('bottom')
arch=('x86_64')
url="https://github.com/ClementTsang/bottom"
license=(MIT)
source=(
archive-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/bottom_x86_64-unknown-linux-gnu.tar.gz
LICENSE::${url}/raw/${pkgver}/LICENSE
)
sha512sums=(
'$hash'
SKIP
)
package() {
install -Dm755 btm "$pkgdir"/usr/bin/btm
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}