Changes of Revision 3

shorten.spec Changed
x
 
1
@@ -8,37 +8,29 @@
2
 Name:           shorten
3
 Summary:        Fast compression for waveform files
4
 Version:        3.6.1
5
-Release:        0.pm.2
6
+Release:        0
7
 License:        Beerware
8
-Group:          Productivity/Multimedia/Sound/Utilities
9
 Url:            http://www.etree.org/shnutils/shorten/
10
-# http://www.etree.org/shnutils/shorten/dist/src/shorten-%{version}.tar.gz
11
-Source:         %{name}-%{version}.tar.bz2
12
-BuildRoot:      %{_tmppath}/build-root-%{name}
13
+Source0:        %name-%version.tar.bz2
14
+Patch0:         %name.patch
15
 
16
 %description
17
 shorten is a fast, low complexity waveform coder (i.e. audio compressor),
18
-originally written by Tony Robinson at SoftSound.
19
-
20
-It can operate in both lossy and lossless modes.
21
+which can operate in both lossy and lossless modes.
22
 
23
 %prep
24
-%setup -q
25
+%autosetup -p1
26
 
27
 %build
28
 %configure
29
-%__make %{?_smp_flags}
30
+%make_build
31
 
32
 %install
33
-%makeinstall
34
-
35
-%clean
36
-%{?buildroot:%__rm -rf "%{buildroot}"}
37
+%make_install
38
 
39
 %files
40
-%defattr(-,root,root)
41
-%doc AUTHORS COPYING ChangeLog NEWS README doc/TODO
42
-%{_bindir}/shorten
43
-%doc %{_mandir}/man1/shorten.1%{ext_man}
44
+%license COPYING
45
+%_bindir/shorten
46
+%_mandir/*/*
47
 
48
 %changelog
49
shorten.patch Added
16
 
1
@@ -0,0 +1,14 @@
2
+---
3
+ src/fixio.c |    1 +
4
+ 1 file changed, 1 insertion(+)
5
+
6
+--- a/src/fixio.c
7
++++ b/src/fixio.c
8
+@@ -13,6 +13,7 @@
9
+ #include <stdio.h>
10
+ #include <stdlib.h>
11
+ #include <string.h>
12
++#include <unistd.h>
13
+ #include "shorten.h"
14
+ #include "bitshift.h"
15
+ 
16