From: KAMiKAZOW Date: Wed, 29 Oct 2014 02:08:59 +0000 (+0100) Subject: Rename ympd.spec to contrib/ympd.spec X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=d4f45558e990d8bfcdfe7206efd3d5277b264dde;p=ympd.git Rename ympd.spec to contrib/ympd.spec --- diff --git a/contrib/ympd.spec b/contrib/ympd.spec new file mode 100644 index 0000000..9438c21 --- /dev/null +++ b/contrib/ympd.spec @@ -0,0 +1,71 @@ +# +# spec file for package ympd +# +# Copyright (c) 2014 Markus S. +# +# This file is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +Name: ympd +Version: 1.2.2 +Release: 0%{?dist} +Summary: ympd is a lightweight MPD (Music Player Daemon) web client +Group: Applications/Multimedia +License: GPL +URL: http://www.ympd.org/ + +# For this spec file to work, the ympd sources must be located in a directory +# named ympd-1.2.2 (with "1.2.2" being the version number defined above). +# If the sources are compressed in another format than ZIP, change the +# file extension accordingly. +Source0: %{name}-%{version}.zip + +# Package names only verified with Fedora. +# Should the packages in your distro be named dirrerently, +# see http://en.opensuse.org/openSUSE:Build_Service_cross_distribution_howto +# %if 0%{?fedora} +BuildRequires: cmake +BuildRequires: unzip +BuildRequires: libmpdclient-devel +Requires: libmpdclient +# %endif + +%description +ympd is a lightweight MPD (Music Player Daemon) web client that runs without +a dedicated webserver or interpreters like PHP, NodeJS or Ruby. +It's tuned for minimal resource usage and requires only very litte dependencies. + + +%prep +%setup -q + +%build +mkdir build +pushd build +%cmake .. -DCMAKE_INSTALL_PREFIX_PATH=%{_prefix} +make PREFIX=%{_prefix} %{?_smp_mflags} +popd + +%install +pushd build +%{make_install} +popd + +%files +%defattr(-,root,root,-) +%doc LICENSE README.md +%{_bindir}/%{name} +%{_mandir}/man[^3]/* + + +%changelog diff --git a/ympd.spec b/ympd.spec deleted file mode 100644 index 9438c21..0000000 --- a/ympd.spec +++ /dev/null @@ -1,71 +0,0 @@ -# -# spec file for package ympd -# -# Copyright (c) 2014 Markus S. -# -# This file is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -Name: ympd -Version: 1.2.2 -Release: 0%{?dist} -Summary: ympd is a lightweight MPD (Music Player Daemon) web client -Group: Applications/Multimedia -License: GPL -URL: http://www.ympd.org/ - -# For this spec file to work, the ympd sources must be located in a directory -# named ympd-1.2.2 (with "1.2.2" being the version number defined above). -# If the sources are compressed in another format than ZIP, change the -# file extension accordingly. -Source0: %{name}-%{version}.zip - -# Package names only verified with Fedora. -# Should the packages in your distro be named dirrerently, -# see http://en.opensuse.org/openSUSE:Build_Service_cross_distribution_howto -# %if 0%{?fedora} -BuildRequires: cmake -BuildRequires: unzip -BuildRequires: libmpdclient-devel -Requires: libmpdclient -# %endif - -%description -ympd is a lightweight MPD (Music Player Daemon) web client that runs without -a dedicated webserver or interpreters like PHP, NodeJS or Ruby. -It's tuned for minimal resource usage and requires only very litte dependencies. - - -%prep -%setup -q - -%build -mkdir build -pushd build -%cmake .. -DCMAKE_INSTALL_PREFIX_PATH=%{_prefix} -make PREFIX=%{_prefix} %{?_smp_mflags} -popd - -%install -pushd build -%{make_install} -popd - -%files -%defattr(-,root,root,-) -%doc LICENSE README.md -%{_bindir}/%{name} -%{_mandir}/man[^3]/* - - -%changelog