acpi: initial commit, version 1.7

This commit is contained in:
Tim Biermann 2020-06-07 13:01:41 +00:00
parent f924500813
commit fd4d99503a
3 changed files with 28 additions and 0 deletions

7
acpi/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/acpi
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/acpi.1.gz

5
acpi/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33i3vi405ysHUJKFbOg+NQ6HDzRySF+nzeK4mWnWNfWQlIEJNpxz/c0J9oFe8t52xqkxKPmgW1rIofMTNNo50w0=
SHA256 (Pkgfile) = 8f01f0cf651c82a0562bc0bc8a2d617b0b79afc2311d8dd1bdcf084d9ed6eb22
SHA256 (.footprint) = eb19cb9c21288533f18cfcb46012f1861d06a72e6dbba8454b3318269421dd6e
SHA256 (acpi-1.7.tar.gz) = d7a504b61c716ae5b7e81a0c67a50a51f06c7326f197b66a4b823de076a35005

16
acpi/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: A program to display informations about ACPI devices.
# URL: https://sourceforge.net/projects/acpiclient/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=acpi
version=1.7
release=1
source=(https://downloads.sourceforge.net/project/acpiclient/acpiclient/$version/$name-$version.tar.gz)
build(){
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}