Compare commits

..

2 Commits
0.1.0 ... main

3 changed files with 5 additions and 6 deletions

2
Cargo.lock generated
View File

@ -276,7 +276,7 @@ dependencies = [
[[package]]
name = "pumo-system-info"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"ansi_term",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "pumo-system-info"
version = "0.1.0"
version = "0.1.1"
authors = ["Lucien Cartier-Tilet <lucien@phundrak.com>"]
edition = "2021"
license = "GPL-3.0-or-later"

View File

@ -1,6 +1,6 @@
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
pkgname=pumo-system-info
pkgver=0.1.0
pkgver=0.1.0.r0.gff90c66
pkgrel=1
pkgdesc="A tiny power manager written in Rust"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
@ -30,10 +30,9 @@ build() {
package() {
cd "$pkgname"
install -Dm755 "target/release/pumopm" "$pkgdir/usr/bin/pumopm"
install -Dm755 "target/release/${pkgname}" "$pkgdir/usr/bin/${pkgname}"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 "pumopm.1" "$pkgdir/usr/share/man/man1/pumopm.1"
install -Dm644 "pumopm.service" "$pkgdir/usr/lib/systemd/system/pumopm.service"
install -Dm644 "${pkgname}.1" "$pkgdir/usr/share/man/man1/${pkgname}.1"
}
# vim:set ts=2 sw=2 et: