mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-22 11:35:43 -04:00
Update for 0.1.1
This commit is contained in:
parent
3781fd7173
commit
3927aa41a2
@ -0,0 +1,8 @@
|
|||||||
|
2004-01-29 <ron@hafnium.corbey.com>
|
||||||
|
|
||||||
|
* Bump version number to 0.1.1
|
||||||
|
* Add support for Solaris
|
||||||
|
* Fix format string problem
|
||||||
|
* Add support for Howl (> 0.9)
|
||||||
|
* Fix renedezvous advertising problem
|
||||||
|
|
@ -1,52 +0,0 @@
|
|||||||
Summary: A multi-threaded implementation of Apple's DAAP server
|
|
||||||
Name: mt-daapd
|
|
||||||
Version: 0.1.0
|
|
||||||
Release: 1
|
|
||||||
License: GPL
|
|
||||||
Group: Development/Networking
|
|
||||||
URL: http://www.pedde.com/downloads/%{name}-%{version}.tar.gz
|
|
||||||
Source0: %{name}-%{version}.tar.gz
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
||||||
Requires: libid3tag
|
|
||||||
BuildRequires: libid3tag-devel
|
|
||||||
|
|
||||||
%description
|
|
||||||
A multi-threaded implementation of Apple's DAAP server, mt-daapd
|
|
||||||
allows a Linux machine to advertise MP3 files to to used by
|
|
||||||
Windows or Mac iTunes clients. This version uses Apple's ASPL Rendezvous
|
|
||||||
daemon.
|
|
||||||
%prep
|
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%build
|
|
||||||
./configure --prefix=$RPM_BUILD_ROOT/usr
|
|
||||||
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make install
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
|
|
||||||
cp contrib/mt-daapd $RPM_BUILD_ROOT/etc/rc.d/init.d
|
|
||||||
cp contrib/mt-daapd.conf $RPM_BUILD_ROOT/etc
|
|
||||||
cp contrib/mt-daapd.playlist $RPM_BUILD_ROOT/etc
|
|
||||||
|
|
||||||
%post
|
|
||||||
/sbin/chkconfig --add mt-daapd
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
/etc/*
|
|
||||||
/usr/sbin/*
|
|
||||||
/usr/share/mt-daapd/*
|
|
||||||
|
|
||||||
%doc
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Fri Nov 14 2003 root <root@hafnium.corbey.com>
|
|
||||||
- Initial build.
|
|
||||||
|
|
||||||
|
|
@ -1,25 +1,25 @@
|
|||||||
Summary: A multi-threaded implementation of Apple's DAAP server
|
Summary: A multi-threaded implementation of Apple's DAAP server
|
||||||
Name: mt-daapd
|
Name: mt-daapd
|
||||||
Version: 0.1.0
|
Version: 0.1.1
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Development/Networking
|
Group: Development/Networking
|
||||||
URL: http://www.pedde.com/downloads/%{name}-%{version}.tar.gz
|
URL: http://www.pedde.com/downloads/%{name}-%{version}.tar.gz
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||||
Requires: howl libid3tag
|
Requires: libid3tag
|
||||||
BuildRequires: libid3tag-devel
|
BuildRequires: libid3tag-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A multi-threaded implementation of Apple's DAAP server, mt-daapd
|
A multi-threaded implementation of Apple's DAAP server, mt-daapd
|
||||||
allows a Linux machine to advertise MP3 files to to used by
|
allows a Linux machine to advertise MP3 files to to used by
|
||||||
Windows or Mac iTunes clients. This verison uses SwampWolf's
|
Windows or Mac iTunes clients. This version uses Apple's ASPL Rendezvous
|
||||||
"howl" as a mDNS daemon.
|
daemon.
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./configure --enable-howl --prefix=$RPM_BUILD_ROOT/usr
|
./configure --prefix=$RPM_BUILD_ROOT/usr
|
||||||
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
|
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -38,7 +38,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
/etc/*
|
%config /etc/mt-daapd.conf
|
||||||
|
%config /etc/mt-daapd.playlist
|
||||||
/usr/sbin/*
|
/usr/sbin/*
|
||||||
/usr/share/mt-daapd/*
|
/usr/share/mt-daapd/*
|
||||||
|
|
||||||
@ -46,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 29 2004 ron <ron@pedde.com>
|
||||||
|
- Update to 0.1.1
|
||||||
|
|
||||||
* Fri Nov 14 2003 root <root@hafnium.corbey.com>
|
* Fri Nov 14 2003 root <root@hafnium.corbey.com>
|
||||||
- Initial build.
|
- Initial build.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user