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 /scripts/makerpm.sh | |
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 '')
-rwxr-xr-x | scripts/makerpm.sh | 29 |
1 files changed, 0 insertions, 29 deletions
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 |