aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2006-07-22 22:01:05 +0000
committerAvuton Olrich <avuton@gmail.com>2006-07-22 22:01:05 +0000
commitc454122a021d705c5ddfa74913d53c18aa078ecb (patch)
tree1b93e7584ad9003ef678b32092d932b8b903a763 /scripts
parent6dfaa33f376f81fb9650d39a03ca57a46b9aec5a (diff)
- Add a 'scripts' directory, remove scripts from
docs/ & base directory - Add a spec file (my first try, please report problems) git-svn-id: https://svn.musicpd.org/mpd/trunk@4429 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makedist.sh20
-rwxr-xr-xscripts/makerpm.sh29
-rwxr-xr-xscripts/mpd-indent.sh1
-rw-r--r--scripts/mpd.spec68
4 files changed, 118 insertions, 0 deletions
diff --git a/scripts/makedist.sh b/scripts/makedist.sh
new file mode 100755
index 00000000..dca64d21
--- /dev/null
+++ b/scripts/makedist.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+PWD=`pwd`
+
+## If we're not in the scripts directory
+## assume the base directory.
+if test "`basename $PWD`" == "scripts"; then
+ cd ../
+fi
+
+if test -e Makefile
+then
+ make distclean
+fi
+./autogen.sh
+make
+make dist
+
+if test "`basename $PWD`" == "scripts"; then
+ cd contrib/
+fi
diff --git a/scripts/makerpm.sh b/scripts/makerpm.sh
new file mode 100755
index 00000000..52104c8a
--- /dev/null
+++ b/scripts/makerpm.sh
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+PWD=`pwd`
+
+## If we're not in the scripts directory
+## assume the base directory.
+if test "`basename $PWD`" != "scripts" && \
+ test -d scripts; then
+ cd scripts
+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 ..
+fi
diff --git a/scripts/mpd-indent.sh b/scripts/mpd-indent.sh
new file mode 100755
index 00000000..992cf9dc
--- /dev/null
+++ b/scripts/mpd-indent.sh
@@ -0,0 +1 @@
+indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cdw -cd0 -c0 -cp0 $@
diff --git a/scripts/mpd.spec b/scripts/mpd.spec
new file mode 100644
index 00000000..286162a5
--- /dev/null
+++ b/scripts/mpd.spec
@@ -0,0 +1,68 @@
+# the Music Player Daemon (MPD)
+# (c)2003-2006 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.12.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