package created by autospec [release 0.1-1mamba;Mon Apr 10 2017]

This commit is contained in:
Silvan Calarco 2024-01-05 20:09:03 +01:00
parent f3230f4819
commit 2ff3c8a1e6
2 changed files with 45 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# acpi_tables_patch
A script to create patched ACPI DSDT tables (dsdt.aml) at runtime.

43
acpi_tables_patch.spec Normal file
View File

@ -0,0 +1,43 @@
Name: acpi_tables_patch
Version: 0.1
Release: 1mamba
Summary: A script to create patched ACPI DSDT tables (dsdt.aml) at runtime
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://openmamba.org
Source: http://openmamba.org/acpi_tables_patch-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
Requires: acpica
%systemd_requires
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A script to create patched ACPI DSDT tables (dsdt.aml) at runtime.
%prep
%setup -q
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_sbindir}/%{name}
%{_unitdir}/acpi_tables_patch@.service
%dir %{_datadir}/acpi_tables_patch
%dir %{_datadir}/acpi_tables_patch/patches
%{_datadir}/acpi_tables_patch/patches/*.patch
%changelog
* Mon Apr 10 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1-1mamba
- package created by autospec