diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-04-29 02:41:19 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2009-04-29 02:43:04 -0700 |
commit | 6dde36d68326001ca5ad75cda555e6aba2d7d675 (patch) | |
tree | fd2a4508977a3da891f08cd03260790e5b12d8d1 | |
parent | e7100377608e282424fde43a196ffdc059d9c4fa (diff) | |
download | mpd-6dde36d68326001ca5ad75cda555e6aba2d7d675.tar.gz mpd-6dde36d68326001ca5ad75cda555e6aba2d7d675.tar.xz mpd-6dde36d68326001ca5ad75cda555e6aba2d7d675.zip |
scripts: Remove mpd.spec, it was always half-baked.
Remove mpd.spec and makerpm.sh. It was never used or maintained
and the distributors take care of this kinda thing now anyhow.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | scripts/makerpm.sh | 29 | ||||
-rw-r--r-- | scripts/mpd.spec | 68 |
3 files changed, 1 insertions, 98 deletions
diff --git a/Makefile.am b/Makefile.am index 347a45c0d..a8c87f588 100644 --- a/Makefile.am +++ b/Makefile.am @@ -776,5 +776,5 @@ endif # EXTRA_DIST = $(doc_DATA) autogen.sh \ - $(wildcard scripts/*.sh) scripts/mpd.spec \ + $(wildcard scripts/*.sh) \ $(man_MANS) $(DOCBOOK_FILES) doc/mpdconf.example diff --git a/scripts/makerpm.sh b/scripts/makerpm.sh deleted file mode 100755 index bfa2b47f0..000000000 --- a/scripts/makerpm.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -PWD=`pwd` - -## If we're not in the scripts directory -## assume the base directory. -if test "`basename $PWD`" != "scripts"; then - MYOLDPWD=`pwd` - cd `dirname $0` -fi - -./makedist.sh - -rpmbuild -bb mpd.spec - -if test $? -eq 0; then - echo 'Your RPM should be ready now' -else - echo 'Something went wrong when building your RPM' -fi - -if test -f ../mpd-?.??.?.tar.gz; -then - rm ../mpd-?.??.?.tar.gz -fi - -if test "`basename $PWD`" != "scripts"; then - cd $MYOLDPWD -fi diff --git a/scripts/mpd.spec b/scripts/mpd.spec deleted file mode 100644 index 96a3b6f79..000000000 --- a/scripts/mpd.spec +++ /dev/null @@ -1,68 +0,0 @@ -# the Music Player Daemon (MPD) -# Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com) -# This project's homepage is: http://www.musicpd.org -# -# This program 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, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -# please send bugfixes or comments to avuton@gmail.com - -%define _prefix /usr -%define _share %_prefix/share -%define _bindir %_prefix/bin -%define _docdir %_share/doc -%define _mandir %_share/man - -Summary: Music Player Daemon (MPD) -Name: mpd -Version: 0.14.0 -Release: 0 -License: GPL -Group: Productivity/Multimedia/Sound/Players -Source: ../%name-%version.tar.gz -#Patch: -BuildRoot: %{_tmppath}/%{name}-build - -%description -Music Player Daemon is simply a daemon for playing music -which can be easily controlled over TCP by different -clients. It has very low CPU usage and can be controlled -from different machines at the same time. - -%prep -%setup -q -#%patch -q1 -b .buildroot - -%build -CFLAGS="%{optflags}" \ -CXXFLAGS="%{optflags}" \ -LDFLAGS="%{optflags}" \ -./configure --prefix=%{_prefix} -make - -%install -make DESTDIR=$RPM_BUILD_ROOT install - -%clean -[ ${RPM_BUILD_ROOT} != "/" ] && rm -rf ${RPM_BUILD_ROOT} - -%files -%defattr(-,root,root) - -%{_bindir}/%{name} -%doc %{_docdir} -%doc %attr(0444,root,root) %{_mandir} - -%changelog -* Fri Jul 21 2006 Avuton Olrich <avuton@gmail.com> -- Initial revision |