-
Notifications
You must be signed in to change notification settings - Fork 15
/
bchunk.spec
85 lines (65 loc) · 2.01 KB
/
bchunk.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
%define name bchunk
%define version 1.2.2
%define release 0
Summary: A CD image format converter from .bin/.cue to .iso/.cdr/.wav.
Name: %{name}
Version: %{version}
Release: %{release}
Group: Applications/Archiving
Copyright: GPL
Url: http://he.fi/bchunk/
Source: %{name}-%{version}.tar.gz
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
%description
The bchunk package contains a UNIX/C rewrite of the BinChunker program.
BinChunker converts a CD image in a .bin/.cue format (sometimes .raw/.cue)
into a set of .iso and .cdr/.wav tracks. The .bin/.cue format is used by some
non-UNIX CD-writing software, but is not supported on most other
CD-writing programs.
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS"
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
install -s -m 755 bchunk $RPM_BUILD_ROOT%{_bindir}
install -m 644 bchunk.1 $RPM_BUILD_ROOT%{_mandir}/man1
%clean
rm -r $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc COPYING README bchunk-%{version}.lsm
%{_bindir}/bchunk
%{_mandir}/man1/bchunk.1.gz
%changelog
* Tue Nov 14 2017 Hessu <[email protected]>
- updated to 1.2.2
* Tue Jun 29 2004 Hessu <[email protected]>
- updated to 1.2.0
* Tue Aug 7 2001 Hessu <[email protected]>
- updated to 1.1.1
* Fri Jul 13 2001 Christian W. Zuckschwerdt <[email protected]>
- replaced the hardcoded paths with macros
* Sun Jul 1 2001 Hessu <[email protected]>
- updated to 1.1.0
* Mon Jul 24 2000 Prospector <[email protected]>
- rebuilt
* Mon Jul 10 2000 Tim Powers <[email protected]>
- rebuilt
* Mon Jul 03 2000 Prospector <[email protected]>
- automatic rebuild
* Wed May 3 2000 Tim Powers <[email protected]>
- rebuilt for 7.0
* Tue Jan 4 2000 Tim Powers <[email protected]>
- rebuilt for 6.2
* Fri Jul 9 1999 Tim Powers <[email protected]>
- added %defattr line and removed old %attr line
- built for 6.1
* Mon Apr 26 1999 Michael Maher <[email protected]>
- built package for 6.0
* Thu Nov 5 1998 Fryguy_ <[email protected]>
[bchunk-1.0.0-1]
- Initial Release