From 335c124d5639122e4959b03d520c0fefa8d2a67b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:39:07 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.4-1mamba;Fri Sep 09 2016] --- README.md | 2 ++ hda-verb.spec | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 hda-verb.spec diff --git a/README.md b/README.md index ed6f333..d7d912c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # hda-verb +hda-verb is a small program to send HD-audio commands to the given ALSA hwdep device on the hd-audio interface. + diff --git a/hda-verb.spec b/hda-verb.spec new file mode 100644 index 0000000..bded4d8 --- /dev/null +++ b/hda-verb.spec @@ -0,0 +1,42 @@ +Name: hda-verb +Version: 0.4 +Release: 1mamba +Summary: A small program to send HD-audio commands to the given ALSA hwdep device +Group: System/Kernel and Hardware +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: ftp://ftp.suse.com/pub/people/tiwai/misc +Source: ftp://ftp.suse.com/pub/people/tiwai/misc/hda-verb-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +hda-verb is a small program to send HD-audio commands to the given ALSA hwdep device on the hd-audio interface. + +%debug_package + +%prep +%setup -q + +%build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -D -m0755 hda-verb %{buildroot}%{_sbindir}/hda-verb + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_sbindir}/hda-verb +%doc COPYING + +%changelog +* Fri Sep 09 2016 Silvan Calarco 0.4-1mamba +- package created using the webbuild interface