blob: d10a940c71ea51db662b48b531cff15a766bbe9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: LGiki <lgiki at lgiki dot net>
pkgname=gnome-shell-extension-simple-system-monitor
pkgver=16
pkgrel=1
pkgdesc="Show current CPU usage, memory usage and net speed on panel."
arch=('any')
url="https://github.com/LGiki/gnome-shell-extension-simple-system-monitor"
license=('GPL')
depends=('gnome-shell')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha512sums=('88fbe9693123af6c513928fdc5ef5348d233bddcd62d318e81b58d690bb525c89fae86475a3503391b7a85711539539fb448c7c5d3642b103a0ad494241b3dbf')
package() {
_uuid="ssm-gnome@lgiki.net"
install -d "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
cd "${srcdir}/${pkgname}-${pkgver}"
cp -a src/* "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
}
|