From 7bd578287842fcc0d0ccd43c2db9ebdde0d9f9ae Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 07:09:41 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.2.0-1mamba;Mon Aug 14 2017] --- README.md | 2 ++ minidlna.spec | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 minidlna.spec diff --git a/README.md b/README.md index 00f5162..2b3760f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # minidlna +ReadyMedia (formerly known as MiniDLNA) is a simple media server software, with the aim of being fully compliant with DLNA/UPnP-AV clients. It is developed by a NETGEAR employee for the ReadyNAS product line. + diff --git a/minidlna.spec b/minidlna.spec new file mode 100644 index 0000000..8413af1 --- /dev/null +++ b/minidlna.spec @@ -0,0 +1,54 @@ +Name: minidlna +Version: 1.2.0 +Release: 1mamba +Summary: A simple media server software, with the aim of being fully compliant with DLNA/UPnP-AV clients +Group: Applications/Multimedia +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://sourceforge.net/projects/minidlna/ +Source: https://downloads.sourceforge.net/project/minidlna/minidlna/%{version}/minidlna-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libavformat-ffmpeg-devel +BuildRequires: libavutil-ffmpeg-devel +BuildRequires: libexif-devel +BuildRequires: libflac-devel +BuildRequires: libid3tag-devel +BuildRequires: libjpeg-devel +BuildRequires: libogg-devel +BuildRequires: libsqlite-devel +BuildRequires: libvorbis-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +ReadyMedia (formerly known as MiniDLNA) is a simple media server software, with the aim of being fully compliant with DLNA/UPnP-AV clients. It is developed by a NETGEAR employee for the ReadyNAS product line. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%find_lang %{name} || touch %{name}.lang + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f %{name}.lang +%defattr(-,root,root) +%{_sbindir}/minidlnad +%doc AUTHORS COPYING + +%changelog +* Mon Aug 14 2017 Silvan Calarco 1.2.0-1mamba +- package created using the webbuild interface