]> git.pld-linux.org Git - packages/mpd.git/blob - mpd.spec
- GPL v2+
[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 v2+
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 >= 0.9.0
18 BuildRequires:  audiofile-devel >= 0.1.7
19 BuildRequires:  avahi-devel
20 BuildRequires:  faad2-devel
21 BuildRequires:  flac-devel >= 1.1.0
22 BuildRequires:  jack-audio-connection-kit-devel >= 0.4
23 BuildRequires:  libao-devel >= 0.8.3
24 BuildRequires:  libid3tag-devel
25 BuildRequires:  libmad-devel
26 BuildRequires:  libmikmod-devel >= 3.1.7
27 BuildRequires:  libmpcdec-devel
28 BuildRequires:  libogg-devel
29 BuildRequires:  libsamplerate-devel >= 0.0.15
30 BuildRequires:  libshout-devel
31 BuildRequires:  libvorbis-devel
32 BuildRequires:  pkgconfig >= 1:0.9.0
33 BuildRequires:  pulseaudio-devel
34 BuildRequires:  zlib-devel
35 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
36
37 %description
38 Music Player Daemon (MPD) allows remote access for playing music (MP3,
39 Ogg Vorbis, FLAC, AAC, Mod, and wave files) and managing playlists.
40 MPD is designed for integrating a computer into a stereo system that
41 provides control for music playback over a local network. It is also
42 makes a great desktop music player, especially if you are a console
43 junkie, like frontend options, or restart X often.
44
45 %description -l pl.UTF-8
46 Music Player Daemon (MPD) pozwala na zdalny dostęp do odtwarzania
47 muzyki (plików MP3, Ogg Vorbis, FLAC, AAC, Mod i wave) oraz
48 zarządzania playlistami. MPD jest zaprojektowany do integrowania
49 komputera w system stereo umożliwiający sterowanie odtwarzaniem muzyki
50 w sieci lokalnej. Służy także za dobry odtwarzacz muzyki dla
51 komputerów biurkowych, zwłaszcza dla miłośników konsoli, różnych opcji
52 frontendów albo często restartujących X.
53
54 %prep
55 %setup -q
56
57 %build
58 # ac_cv_* hacks to avoid unwanted linking
59 %configure \
60         ac_cv_lib_iconv_main=no \
61         ac_cv_lib_nsl_gethostbyname=no \
62         --enable-ao
63 %{__make}
64
65 %install
66 rm -rf $RPM_BUILD_ROOT
67
68 %{__make} install \
69         DESTDIR=$RPM_BUILD_ROOT
70
71 %clean
72 rm -rf $RPM_BUILD_ROOT
73
74
75 %files
76 %defattr(644,root,root,755)
77 %doc AUTHORS ChangeLog README TODO doc/mpdconf.example UPGRADING doc/COMMANDS
78 %attr(755,root,root) %{_bindir}/*
79 %{_mandir}/man1/mpd.1*
80 %{_mandir}/man5/mpd.conf.5*
81
82 #%{_datadir}/%{name}
83
84 # initscript and its config
85 #%attr(754,root,root) /etc/rc.d/init.d/%{name}
86 #%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/%{name}
This page took 0.036022 seconds and 4 git commands to generate.