kwh-cost/PKGBUILD

20 lines
442 B
Bash

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