New package: hwinfo-21.80

This commit is contained in:
meator 2021-10-17 10:52:31 +02:00 committed by Leah Neukirchen
parent d80415363d
commit 672b0603c1
4 changed files with 92 additions and 0 deletions

1
srcpkgs/hwinfo-devel Symbolic link
View File

@ -0,0 +1 @@
hwinfo

View File

@ -0,0 +1,13 @@
--- a/src/ids/Makefile 2021-10-01 13:55:16.000000000 +0200
+++ b/src/ids/Makefile 2021-10-26 13:05:51.241897833 +0200
@@ -56,8 +56,8 @@
hd_ids.c: hd_ids.h hd_ids_tiny.h
hd_ids.h hd.ids: check_hd $(IDFILES)
- ./check_hd --check --sort --cfile hd_ids.h $(IDFILES)
+ check_hd --check --sort --cfile hd_ids.h $(IDFILES)
hd_ids_tiny.h: check_hd hd.ids
- ./check_hd --mini --cfile hd_ids_tiny.h --log=hd_tiny.log --out=hd_tiny.ids hd.ids
+ check_hd --mini --cfile hd_ids_tiny.h --log=hd_tiny.log --out=hd_tiny.ids hd.ids

View File

@ -0,0 +1,24 @@
Remove isdn_cdb.h from TARGETS, so it won't be recompiled again. This is unnecessary
because it is already being made explicitly.
Remove isdn_cdb.h from CLEANFILES. The template uses make clean to clean junk from
isdn_cdb.h, but it needs isdn_cdb.h, so this will not delete it.
--- a/src/isdn/cdb/Makefile 2021-10-01 13:55:16.000000000 +0200
+++ b/src/isdn/cdb/Makefile 2021-10-26 12:59:56.810695582 +0200
@@ -1,6 +1,6 @@
TOPDIR = ../../..
-TARGETS = mk_isdnhwdb isdn_cdb.h ISDN.CDB.hwdb
-CLEANFILES = isdn_cdb isdn_cdb.h lex.yy.c ISDN.CDB.txt mk_isdnhwdb ISDN.CDB.hwdb
+TARGETS = mk_isdnhwdb ISDN.CDB.hwdb
+CLEANFILES = isdn_cdb lex.yy.c ISDN.CDB.txt mk_isdnhwdb ISDN.CDB.hwdb
include $(TOPDIR)/Makefile.common
@@ -28,6 +28,6 @@
mk_isdnhwdb.o: mk_isdnhwdb.c cdb_read.h lex.yy.c
-ISDN.CDB.hwdb: mk_isdnhwdb ISDN.CDB.txt
+ISDN.CDB.hwdb: ISDN.CDB.txt
rm -f ISDN.CDB.hwdb
- ./mk_isdnhwdb ISDN.CDB.txt ISDN.CDB.hwdb
+ mk_isdnhwdb ISDN.CDB.txt ISDN.CDB.hwdb

54
srcpkgs/hwinfo/template Normal file
View File

@ -0,0 +1,54 @@
# Template file for 'hwinfo'
pkgname=hwinfo
version=21.80
revision=1
build_style=gnu-makefile
make_use_env=yes
make_build_args="HWINFO_VERSION=${version} LIBDIR=/usr/lib${XBPS_TARGET_WORDSIZE}"
make_install_args="${make_build_args}"
hostmakedepends="perl flex"
makedepends="libx86emu-devel libuuid-devel"
short_desc="Hardware information tool"
maintainer="meator <meator.dev@gmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/openSUSE/hwinfo"
distfiles="https://github.com/openSUSE/hwinfo/archive/refs/tags/${version}.tar.gz"
checksum=ea944271793df091af560ac6e82dcd1271aa83f22aeeada031789df1b5407ebe
disable_parallel_build=yes
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" hwinfo"
fi
post_patch() {
if [ "$CROSS_BUILD" ]; then
for p in ${FILESDIR}/*; do
patch -p1 < $p
done
fi
}
pre_build() {
if [ "$CROSS_BUILD" ]; then
CC=gcc CFLAGS= LDFLAGS= make ${make_build_args} -C src/isdn/cdb isdn_cdb.h
make -C src/isdn/cdb clean
fi
}
post_install() {
mv ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin
for m in doc/*.[1-9]; do
vman ${m}
done
}
hwinfo-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove usr/lib/pkgconfig
}
}