]> git.pld-linux.org Git - packages/audiofile.git/blob - audiofile.spec
- gzipping documentation,
[packages/audiofile.git] / audiofile.spec
1 Summary:        Audio File Library - SGI Audio File Library
2 Summary(pl):    Biblioteka Audio File - implementacja SGI Audio File Library
3 Name:           audiofile
4 Version:        0.1.6
5 Release:        1
6 Copyright:      GPL
7 Group:          Applications/Sound
8 Group(pl):      Aplikacje/D¼wiêk
9 Source:         ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/%{name}-%{version}.tar.gz
10 URL:            http://www.68k.org./~michael/audiofile/
11 BuildRoot:      /tmp/%{name}-%{version}-root
12 Obsoletes:      libaudiofile
13 Conflicts:      glibc <= 2.0.7
14
15 %description
16 This Audio File Library is an implementation of the SGI Audio File library. 
17 Since the latter is specified ambiguously in places, I've taken some
18 liberties in interpreting certain such ambiguities. At the present, not all
19 features of the SGI Audio File library are implemented. I feel, though,
20 that this implementation of the Audio File Library offers enough
21 functionality to be useful for general tasks.
22
23 This library allows the processing of audio data to and from audio files of
24 many common formats (currently AIFF, AIFC, WAVE, and NeXT/Sun).
25
26 %description -l pl
27 Biblioteka Audio File jest implementacj± biblioteki SGI Audio File.
28 Przy jej pomocy mo¿na przetwarzaæ d¼wiêki w ró¿nych formatach (AIFF, AIFC,
29 WAVE i NeXT/Sun).
30
31 %package        devel
32 Summary:        Header files and others to develop Audio File applications
33 Summary(pl):    Pliki nag³ówkowe i inne potrzebe do Audio File
34 Group:          Development/Libraries
35 Group(pl):      Programowanie/Biblioteki
36 Requires:       %{name} = %{version}
37 Obsoletes:      libaudiofile-devel
38
39 %description devel
40 Header files and others to develop Audio File applications.
41
42 %description -l pl devel
43 Pliki nag³ówków do Audio File'a, czyli to czego potrzebujesz do tworzenia
44 aplikacji pod Audio File'm.
45
46 %package        static
47 Summary:        Static libaudiofile libraries
48 Summary(pl):    Biblioteka statyczne libaudiofile
49 Group:          Development/Libraries
50 Group(pl):      Programowanie/Biblioteki
51 Requires:       %{name}-devel = %{version}
52 Obsoletes:      libaudiofile-static
53
54 %description static
55 Static libaudiofile libraries
56
57 %description -l pl devel
58 Biblioteki statyczne libaudiofile.
59
60 %prep
61 %setup -q
62
63 %build
64 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
65 ./configure \
66         --prefix=/usr
67
68 make
69
70 %install
71 rm -rf $RPM_BUILD_ROOT
72
73 make install DESTDIR=$RPM_BUILD_ROOT
74
75 strip $RPM_BUILD_ROOT/usr/lib/lib*.so.*.*
76
77 gzip -9nf NOTES README TODO
78
79 %post   -p /sbin/ldconfig
80 %postun -p /sbin/ldconfig
81
82 %clean
83 rm -rf $RPM_BUILD_ROOT
84
85 %files
86 %defattr(644,root,root,755)
87 %doc {NOTES,README,TODO}.gz
88
89 %attr(755,root,root) /usr/bin/sfconvert
90 %attr(755,root,root) /usr/bin/sfinfo
91 %attr(755,root,root) /usr/lib/lib*.so.*
92
93 %files devel
94 %defattr(644,root,root,755)
95
96 %attr(755,root,root) /usr/bin/audiofile-config
97 %attr(755,root,root) /usr/lib/lib*.so
98
99 /usr/include/*
100 /usr/share/aclocal/audiofile.m4
101
102 %files static
103 %attr(644,root,root) /usr/lib/lib*.a
104
105 %changelog
106 * Wed Mar 10 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
107   [0.1.6-1]
108 - back to old name .. audiofile.
109
110 * Fri Feb 26 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
111   [0.1.5-3]
112 - added "Conflicts: glibc <= 2.0.7" for prevent install
113   with proper version glibc,
114 - changed Group in devel and static.
115
116 * Mon Jan 04 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
117   [0.1.5-1d]
118 - changed package name to libaudiofile (audiofile added to Obsoletes),
119 - added striping shared libraries,
120 - audiofile-config to devel,
121 - enhanced main %description,
122 - added static subpackage,
123 - new %insatall and %build (libaudiofile have new autoconf scheme).
124
125 * Sun Sep 27 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
126   [0.1.3-2]
127 - added -q %setup parameter,
128 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
129 - added using %%{name} and %%{version} in Source,
130 - changed install prefix from /usr/local to /usr.
131 - changeded dependences to "Requires: %%{name} = %%{version}" in devel
132   subpackage,
133 - added using $RPM_OPT_FLAGS during compile,
134 - added full %attr description in %files,
135 - simplifications in %install.
136
137 * Tue Aug 11 1998 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
138   [0.1.3-1]
139 - first try at an RPM,
140 - build against GNU libc-2.1.
This page took 0.04028 seconds and 3 git commands to generate.