20 lines
461 B
Bash
20 lines
461 B
Bash
# Maintainer: 1ridic <i@8f.al>
|
|
pkgname=uptimes
|
|
pkgver=0.1.3
|
|
pkgrel=2
|
|
pkgdesc="status of total uptime"
|
|
arch=('any')
|
|
url=""
|
|
license=('unknown')
|
|
depends=('python')
|
|
source=(
|
|
local://uptimes
|
|
local://uptimesd.service
|
|
)
|
|
md5sums=('e70411e89528c1d4f55fdbf97c4e4736'
|
|
'7a90889f87792317e70ebdce9dae7023')
|
|
|
|
package() {
|
|
install -Dm755 uptimes "$pkgdir/usr/bin/uptimes"
|
|
install -Dm644 uptimesd.service "$pkgdir/usr/lib/systemd/system/uptimesd.service"
|
|
}
|