]> git.pld-linux.org Git - packages/accuraterip-checksum.git/blob - accuraterip-checksum.spec
df0a2e7cbb71619f897ae7bd9ef1220dbd33c064
[packages/accuraterip-checksum.git] / accuraterip-checksum.spec
1 Summary:        A C99 commandline program to compute the AccurateRip checksum
2 Name:           accuraterip-checksum
3 Version:        1.4
4 Release:        1
5 License:        GPL v3
6 Group:          Applications
7 Source0:        https://github.com/leo-bogert/accuraterip-checksum/archive/version%{version}.tar.gz
8 # Source0-md5:  a5a1ac13ed4f16266f972918e21bd095
9 URL:            https://github.com/leo-bogert/accuraterip-checksum
10 BuildRequires:  libsndfile-devel
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 A C99 commandline program to compute the AccurateRip checksum of
15 singletrack WAV files. Implemented according to
16 http://www.hydrogenaudio.org/forums/index.php?showtopic=97603
17
18 %prep
19 %setup -q -n %{name}-version%{version}
20
21 %build
22 %{__cc} %{rpmcflags} accuraterip-checksum.c -o %{name} %{rpmldflags} -lsndfile
23
24 %install
25 rm -rf $RPM_BUILD_ROOT
26 install -d $RPM_BUILD_ROOT/%{_bindir}
27 cp -p %{name} $RPM_BUILD_ROOT/%{_bindir}
28
29 %clean
30 rm -rf $RPM_BUILD_ROOT
31
32 %files
33 %defattr(644,root,root,755)
34 %doc README.md
35 %attr(755,root,root) %{_bindir}/%{name}
This page took 0.061189 seconds and 2 git commands to generate.