Created
October 27, 2015 21:52
-
-
Save sedrubal/617d40deb7452a25d004 to your computer and use it in GitHub Desktop.
cava - RPM SPEC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: cava | |
Version: 0.3.5 | |
Release: 1%{?dist} | |
Summary: Console-based Audio Visualizer for Alsa | |
Group: Applications/Multimedia | |
License: MIT | |
URL: https://karlstav.github.io/%{name}/ | |
Source0: https://github.com/karlstav/%{name}/archive/%{version}.tar.gz | |
BuildRequires: alsa-lib-devel | |
BuildRequires: ncurses-devel | |
BuildRequires: fftw3-devel | |
%description | |
C.A.V.A. is a bar spectrum analyzer for audio using ALSA for input. Its frequency range is limited to 50-10,000Hz. I know that the human ear can hear from 20 up to 20,000 Hz (and probably "sense" even higher frequencies), but the frequencies between 50-10,000Hz seem to me to be the most distinguishable. (I believe telephones used to be limited to as low as 8kHz.) | |
%prep | |
%setup -q | |
%build | |
make %{?_smp_mflags} DESTDIR=%{buildroot} PREFIX=/usr/ VERSION=%{version} | |
%install | |
make install DESTDIR=%{buildroot} PREFIX=/usr/ | |
%files | |
%doc README.md | |
%license LICENSE | |
%{_bindir}/cava | |
%changelog | |
* Tue Oct 27 2015 sedrubal <[email protected]> - 0.3.5 | |
- First build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment