kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 7594cdf10d93de339d6a29bca41c7280db59230f
parent 5b3cd5a78e6a3f08f5f6fa1cbe1ad8a6f7638c50
Author: St John Karp <contact@stjo.hn>
Date:   Wed, 13 Jul 2022 13:17:50 -0400

pm-utils: Add package at version 1.4.1

Diffstat:
Aextra/pm-utils/build | 14++++++++++++++
Aextra/pm-utils/checksums | 1+
Aextra/pm-utils/sources | 1+
Aextra/pm-utils/version | 1+
4 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/extra/pm-utils/build b/extra/pm-utils/build @@ -0,0 +1,14 @@ +#!/usr/bin/env sh + +./configure $KISS_CONFIGURE \ + --prefix=/usr \ + --sysconfdir=/etc \ + --docdir="/usr/share/doc/pm-utils-$2" +make +make install + +install -m644 man/*.1 "$1/usr/share/man/man1" && + install -m644 man/*.8 "$1/usr/share/man/man8" && + ln -s pm-action.8 "$1/usr/share/man/man8/pm-suspend.8" && + ln -s pm-action.8 "$1/usr/share/man/man8/pm-hibernate.8" && + ln -s pm-action.8 "$1/usr/share/man/man8/pm-suspend-hybrid.8" diff --git a/extra/pm-utils/checksums b/extra/pm-utils/checksums @@ -0,0 +1 @@ +8ed899032866d88b2933a1d34cc75e8ae42dcde20e1cc21836baaae3d4370c0b diff --git a/extra/pm-utils/sources b/extra/pm-utils/sources @@ -0,0 +1 @@ +https://pm-utils.freedesktop.org/releases/pm-utils-VERSION.tar.gz diff --git a/extra/pm-utils/version b/extra/pm-utils/version @@ -0,0 +1 @@ +1.4.1 1