forked from alsaplayer/alsaplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alsaplayer.spec.in
73 lines (60 loc) · 2.01 KB
/
alsaplayer.spec.in
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
Summary: A advanced, graphical PCM audio player
Name: alsaplayer
Version: @VERSION@
Release: 1
URL: http://www.alsaplayer.org/
Source0: http://www.alsaplayer.org/%{name}-%{version}.tar.bz2
License: GPL
Group: Applications/Multimedia
BuildRoot: %{_tmppath}/%{name}-root
# FIXME: check out what packages are available in different
# distributions.
# These are correct for both redhat and mandrake
BuildRequires: gtk+-devel, libvorbis-devel, mikmod
# These are redhat only
#BuildRequires: libmad, esound-devel, audiofile-devel
%description
AlsaPlayer is a new PCM player developed on the Linux Operating
System. AlsaPlayer was written in the first place to excercise the new
ALSA (Advanced Linux Sound Architecture) driver and library system.
It has now developed into a versitile audio player with rich plugin system.
The Input Plugins plugins include: OGG, MPEG, MAD, CDDA, MikMod, FLAC and
Audiofile. The Output Plugins include: ALSA, OSS and OSS/Lite, Esound,
Sparc (tested on UltraSparc), SGI, and JACK. There are also a few scope
plugins included.
%package devel
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Summary: Files needed for building applications with libalsaplayer
%description devel
The functionality of the alsaplayer is also exposed via a c programming
library. This package is neede to compile programs that uses the library.
%prep
%setup -q
%build
automake
./configure --prefix=%{_prefix} --mandir=%{_datadir}/man --enable-audiofile
make
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=%{buildroot} install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README INSTALL AUTHORS COPYING TODO docs/wishlist.txt
%{_libdir}/pkgconfig/*
%{_libdir}/*.so.*
%{_libdir}/alsaplayer/*
%{_bindir}/*
%{_datadir}/man/man*/*
%files devel
%{_includedir}/alsaplayer/*
%doc docs/reference/html
%{_libdir}/*.so
%{_libdir}/*.la
%changelog
* Mon Jul 29 2002 Daniel Resare <[email protected]>
- Initial build.
* Sun Jul 06 2007 Dominique Michel <[email protected]>
- Added FLAC input plugin in description.