]> git.pld-linux.org Git - packages/mpd.git/blob - mpd.spec
- up to 0.13.1
[packages/mpd.git] / mpd.spec
1 # TODO:
2 # - add initscript
3 # - create user for daemon (group audio)
4 # - add dir to store playlists and songs DB
5 # - create default config
6 # - add logrotate
7 Summary:        Music Player Daemon
8 Summary(pl.UTF-8):      Music Player Daemon - demon odtwarzający muzykę
9 Name:           mpd
10 Version:        0.13.1
11 Release:        1
12 License:        GPL
13 Group:          Applications/Multimedia
14 Source0:        http://musicpd.org/uploads/files/%{name}-%{version}.tar.bz2
15 # Source0-md5:  dbd219c8ba773bc9270e27bfafc798b5
16 URL:            http://www.musicpd.org/
17 BuildRequires:  alsa-lib-devel
18 BuildRequires:  audiofile-devel >= 0.1.7
19 BuildRequires:  faad2-devel
20 BuildRequires:  flac-devel >= 1.1.0
21 #BuildRequires: gcc-c++
22 BuildRequires:  libao-devel >= 0.8.3
23 BuildRequires:  libatomic_ops
24 BuildRequires:  libid3tag-devel
25 BuildRequires:  libmad-devel
26 BuildRequires:  libmikmod-devel
27 BuildRequires:  libmpcdec-devel
28 BuildRequires:  libogg-devel
29 BuildRequires:  libshout-devel
30 BuildRequires:  libvorbis-devel
31 BuildRequires:  pkgconfig >= 0.9.0
32 BuildRequires:  pulseaudio-devel
33 BuildRequires:  zlib-devel
34 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
35
36 %description
37 Music Player Daemon (MPD) allows remote access for playing music (MP3,
38 Ogg Vorbis, FLAC, AAC, Mod, and wave files) and managing playlists.
39 MPD is designed for integrating a computer into a stereo system that
40 provides control for music playback over a local network. It is also
41 makes a great desktop music player, especially if you are a console
42 junkie, like frontend options, or restart X often.
43
44 %description -l pl.UTF-8
45 Music Player Daemon (MPD) pozwala na zdalny dostęp do odtwarzania
46 muzyki (plików MP3, Ogg Vorbis, FLAC, AAC, Mod i wave) oraz
47 zarządzania playlistami. MPD jest zaprojektowany do integrowania
48 komputera w system stereo umożliwiający sterowanie odtwarzaniem muzyki
49 w sieci lokalnej. Służy także za dobry odtwarzacz muzyki dla
50 komputerów biurkowych, zwłaszcza dla miłośników konsoli, różnych opcji
51 frontendów albo często restartujących X.
52
53 %prep
54 %setup -q
55
56 %build
57 %configure \
58         --enable-ao
59 %{__make}
60
61 %install
62 rm -rf $RPM_BUILD_ROOT
63
64 %{__make} install \
65         DESTDIR=$RPM_BUILD_ROOT
66
67 %clean
68 rm -rf $RPM_BUILD_ROOT
69
70
71 %files
72 %defattr(644,root,root,755)
73 %doc AUTHORS ChangeLog README TODO doc/mpdconf.example UPGRADING doc/COMMANDS
74 %attr(755,root,root) %{_bindir}/*
75 %{_mandir}/man1/mpd.1*
76 %{_mandir}/man5/mpd.conf.5*
77
78 #%{_datadir}/%{name}
79
80 # initscript and its config
81 #%attr(754,root,root) /etc/rc.d/init.d/%{name}
82 #%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/%{name}
This page took 0.107289 seconds and 4 git commands to generate.