x86info: corrected mandir

This commit is contained in:
Tim Biermann 2020-01-20 15:40:54 +00:00
parent cfe52efcbe
commit 89da9a5824
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 10 additions and 12 deletions

View File

@ -1,8 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/x86info
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yPculABaC0ol8GNnpQmycPBUY4Jy/ZWfwzEsIfxpTwCnAboY1mXDNuKwP2/eWmmw/7Q+VxQoqsjCVUcgr3sGgU=
SHA256 (Pkgfile) = 4c16088754e9735e229f4711352caa02570b3900dddd1157067d9d3127319a47
SHA256 (.footprint) = 585e49b1e64a494032fb8f17c8e1ed9d1da7dfc102fae35b71ac1584add86464
SHA256 (x86info_1.30.orig.tar.gz) = fe3009850e93a9c5fa38ed6bf74d72686043329fead8f1b2be4b5943d4fc9428
RWSagIOpLGJF335IxCsaspTF2AydzxhkmtAnFmKXY8LxD5rxZFvQ1VAcDZzhWC2XRM6/QxpixUvRijj56V2KeohAf7QDnSHBQAs=
SHA256 (Pkgfile) = 301d3d2bcf3d661829af8f5a7a025e680763c5a3647c94699aef7316946aca92
SHA256 (.footprint) = 8ab7cd8a79da59a2423c19fa17a40cdc34309c50daa5e3c9d3f9f66c1f131763
SHA256 (x86info-1.30.tar.gz) = f9c0b365fe6b8887cffb7e5c445153ea06924ee09b71b94ec5394be586f10975

View File

@ -1,18 +1,18 @@
# Description: In-depth CPU information tool.
# URL: http://www.codemonkey.org.uk/projects/x86info/
# URL: https://github.com/kernelslacker/x86info
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: python
# Depends on:
name=x86info
version=1.30
release=1
source=(https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/x86info/1.30-3/x86info_$version.orig.tar.gz)
release=2
source=(https://github.com/kernelslacker/x86info/archive/8ea5ed1/$name-$version.tar.gz)
build() {
cd $name-$version
cd $name-8ea5ed19fae1d209eba9257171a10f7afd474618
sed -e 's/-Werror //' -i Makefile
make
mkdir -p $PKG/usr/{bin,man/man1}
mkdir -p $PKG/usr/{bin,share/man/man1}
install -D -m755 -oroot -groot $name $PKG/usr/bin/$name
install -D -m644 -oroot -groot $name.1 $PKG/usr/share/man/man1/$name.1
}