mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-24 06:05:56 -05:00
Remove specfiles
This commit is contained in:
parent
d3b4d80284
commit
a54582c0b7
@ -10,7 +10,3 @@ mt-daapd-gentoo.......: an init.d script, suitable for gentoo
|
||||
mt-daapd-ssc.pl.......: a transcoding script, using perl
|
||||
mt-daapd-ssc.sh.......: a transcoding script, using shell
|
||||
|
||||
mt-daapd.spec.........: a specfile, without ogg-vorbis or howl
|
||||
mt-daapd.fc2.spec.....: a specfile (ostensibly for fc2), with ogg-vorbis, but not howl
|
||||
mt-daapd.fc3.spec.....: a specfile (ostensibly for fc3), with both ogg-vorbis and howl
|
||||
|
||||
|
@ -1,71 +0,0 @@
|
||||
Summary: A multi-threaded implementation of Apple's DAAP server
|
||||
Name: mt-daapd
|
||||
Version: 0.2.1.1
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: Development/Networking
|
||||
URL: http://sourceforge.net/project/showfiles.php?group_id=98211
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||
Requires: libid3tag gdbm libogg libvorbis
|
||||
BuildRequires: libid3tag-devel gdbm-devel libogg-devel libvorbis-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
|
||||
# Someone could give me some autoconf that would find the howl include dir...
|
||||
./configure --prefix=$RPM_BUILD_ROOT/usr --enable-oggvorbis
|
||||
|
||||
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
|
||||
mkdir -p $RPM_BUILD_ROOT/var/cache/mt-daapd
|
||||
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,-)
|
||||
%config /etc/mt-daapd.conf
|
||||
%config /etc/mt-daapd.playlist
|
||||
/etc/rc.d/init.d/mt-daapd
|
||||
/usr/sbin/mt-daapd
|
||||
/usr/share/mt-daapd/*
|
||||
/var/cache/mt-daapd
|
||||
|
||||
%doc
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jan 18 2005 ron <ron@pedde.com>
|
||||
- Update to 0.2.1, add oggvorbis
|
||||
|
||||
* Tue Jun 01 2004 ron <ron@pedde.com>
|
||||
- Update to 0.2.0
|
||||
|
||||
* Mon Apr 06 2004 ron <ron@pedde.com>
|
||||
- Update to 0.2.0-pre1
|
||||
- Add /var/cache/mt-daapd
|
||||
|
||||
* Thu Jan 29 2004 ron <ron@pedde.com>
|
||||
- Update to 0.1.1
|
||||
|
||||
* Fri Nov 14 2003 root <root@hafnium.corbey.com>
|
||||
- Initial build.
|
||||
|
||||
|
@ -1,71 +0,0 @@
|
||||
Summary: A multi-threaded implementation of Apple's DAAP server
|
||||
Name: mt-daapd
|
||||
Version: 0.2.1.1
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: Development/Networking
|
||||
URL: http://sourceforge.net/project/showfiles.php?group_id=98211
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||
Requires: libid3tag gdbm libogg howl libvorbis howl-libs
|
||||
BuildRequires: libid3tag-devel gdbm-devel howl-devel libogg-devel libvorbis-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
|
||||
# Someone could give me some autoconf that would find the howl include dir...
|
||||
./configure --prefix=$RPM_BUILD_ROOT/usr --enable-howl --enable-oggvorbis --with-howl-includes=/usr/include/howl-0.9.6
|
||||
|
||||
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
|
||||
mkdir -p $RPM_BUILD_ROOT/var/cache/mt-daapd
|
||||
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,-)
|
||||
%config /etc/mt-daapd.conf
|
||||
%config /etc/mt-daapd.playlist
|
||||
/etc/rc.d/init.d/mt-daapd
|
||||
/usr/sbin/mt-daapd
|
||||
/usr/share/mt-daapd/*
|
||||
/var/cache/mt-daapd
|
||||
|
||||
%doc
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jan 18 2005 ron <ron@pedde.com>
|
||||
- Update to 0.2.1, add howl & oggvorbis
|
||||
|
||||
* Tue Jun 01 2004 ron <ron@pedde.com>
|
||||
- Update to 0.2.0
|
||||
|
||||
* Mon Apr 06 2004 ron <ron@pedde.com>
|
||||
- Update to 0.2.0-pre1
|
||||
- Add /var/cache/mt-daapd
|
||||
|
||||
* Thu Jan 29 2004 ron <ron@pedde.com>
|
||||
- Update to 0.1.1
|
||||
|
||||
* Fri Nov 14 2003 root <root@hafnium.corbey.com>
|
||||
- Initial build.
|
||||
|
||||
|
@ -1,70 +0,0 @@
|
||||
Summary: A multi-threaded implementation of Apple's DAAP server
|
||||
Name: mt-daapd
|
||||
Version: 0.2.1.1
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: Development/Networking
|
||||
URL: http://sourceforge.net/project/showfiles.php?group_id=98211
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||
Requires: libid3tag gdbm
|
||||
BuildRequires: libid3tag-devel gdbm-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
|
||||
mkdir -p $RPM_BUILD_ROOT/var/cache/mt-daapd
|
||||
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,-)
|
||||
%config /etc/mt-daapd.conf
|
||||
%config /etc/mt-daapd.playlist
|
||||
/etc/rc.d/init.d/mt-daapd
|
||||
/usr/sbin/mt-daapd
|
||||
/usr/share/mt-daapd/*
|
||||
/var/cache/mt-daapd
|
||||
|
||||
%doc
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jan 18 2005 ron <ron@pedde.com>
|
||||
- Update to 0.2.1, add oggvorbis
|
||||
|
||||
* Tue Jun 01 2004 ron <ron@pedde.com>
|
||||
- Update to 0.2.0
|
||||
|
||||
* Mon Apr 06 2004 ron <ron@pedde.com>
|
||||
- Update to 0.2.0-pre1
|
||||
- Add /var/cache/mt-daapd
|
||||
|
||||
* Thu Jan 29 2004 ron <ron@pedde.com>
|
||||
- Update to 0.1.1
|
||||
|
||||
* Fri Nov 14 2003 root <root@hafnium.corbey.com>
|
||||
- Initial build.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user