kwh-cost/PKGBUILD

21 lines
406 B
Bash

# Maintainer: Alexander "Arav" Andreev <me@arav.top>
pkgname=kwh-calc
pkgver=1.0.0
pkgrel=1
epoch=0
pkgdesc="Calculate cost of electricity."
arch=('any')
url="https://git.arav.top/Arav/kwh-calc"
license=('MIT')
source=('git+https://git.arav.top/Arav/kwh-calc.git')
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgname"
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
}