summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cab3abd49c67f3630c837ee4573ea9c57fbdc1cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pkgname=batterizer
pkgver=1.0
pkgrel=1
pkgdesc="Battery level monitor; made as a lightweight alternative to Waybar"
arch=('any')
url="https://gitlab.com/matei1413/batterizer"
license=('CC0')
depends=('python' 'python-psutil')

source=("https://gitlab.com/matei1413/batterizer")
sha256sums=('7c6c3a0a8132b49d01f3855aac340e82ba54a44ce7d88e66fa2e22246e822f51'
            'a20d656e572f94c996890f1cbec3ac243d7ae14a357ef0f43868af32326b033a')

package() {
    # Install the shell script
    install -D -m755 batterizer "$pkgdir/usr/bin/batterizer"
    
    # Install the Python script
    install -D -m755 batterizer.py "$pkgdir/usr/bin/batterizer.py"
}