blob: 8ff7f66e8c63de6bd5bf3d54c27876c723d005c5 (
plain)
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
|
%define ver @SND_LIB_VERSION@
%define rel 1
%define prefix /
Summary: Advanced Linux Sound Architecture (ALSA) - Library
Name: alsa-lib
Version: %ver
Release: %rel
Copyright: GPL
Group: System/Libraries
Source: ftp://alsa.jcu.cz/pub/lib/alsa-lib-%{ver}.tar.gz
BuildRoot: /tmp/alsa-lib-%{ver}
Packager: Helge Jensen <slog@slog.dk>
URL: http://alsa.jcu.cz
Docdir: %{prefix}/usr/doc
Requires: alsa-driver
%description
Advanced Linux Sound Architecture (ALSA) - Library
Features
========
* general
- modularized architecture with support for 2.0 and latest 2.1 kernels
- support for versioned and exported symbols
- full proc filesystem support - /proc/sound
* ISA soundcards
- support for 128k ISA DMA buffer
* mixer
- new enhanced API for applications
- support for unlimited number of channels
- volume can be set in three ways (percentual (0-100), exact and decibel)
- support for mute (and hardware mute if hardware supports it)
- support for mixer events
- this allows two or more applications to be synchronized
* digital audio (PCM)
- new enhanced API for applications
- full real duplex support
- full duplex support for SoundBlaster 16/AWE soundcards
- digital audio data for playback and record should be read back using
proc filesystem
* OSS/Lite compatibility
- full mixer compatibity
- full PCM (/dev/dsp) compatibility
%changelog
* Mon May 28 1998 Helge Jensen <slog@slog.dk>
- Made SPEC file
%prep
%setup -n alsa-lib
%build
./configure --prefix=/usr
make
%install
mkdir -p $RPM_BUILD_ROOT/usr/include/sys
mkdir -p $RPM_BUILD_ROOT/usr/lib
make prefix="$RPM_BUILD_ROOT/usr" install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc doc/*.html
%doc doc/*.sgml
%doc doc/*.txt
%{prefix}/usr/include/sys/soundlib.h
%{prefix}/usr/lib/lib*
|