git remove old non-working packaging files

implements bug: 1198774

Change-Id: Iebd3eb22dd7e3b93131c298e01ac4bcf1fea004e
This commit is contained in:
Mark McClain 2013-07-07 22:15:30 -04:00
parent b141edd3db
commit 8ad0692276
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
#!/bin/bash
ALIEN=`which alien`
if [ $? -ne 0 ]; then
echo "You must have alien installed to build debian packages"
exit 1
fi
FAKEROOT=""
if [ `id -u` != 0 ]; then
FAKEROOT=`which fakeroot`
if [ $? -ne 0 ]; then
echo "You must be root or have fakeroot installed to build debian packages"
exit 1
fi
fi
ls dist/*.rpm >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "You must build rpms before building debian packages"
exit 1
fi
$FAKEROOT $ALIEN -c -v -d dist/*.noarch.rpm