Remove automated rpm and arch packaging.

See #6480 for the reasoning.
This commit is contained in:
Paul Chote
2014-11-15 09:57:37 +13:00
committed by Paul Chote
parent 4d1372aaec
commit 260c36239b
6 changed files with 1 additions and 156 deletions

View File

@@ -39,20 +39,3 @@ if [ $? -ne 0 ]; then
echo "Debian package build failed."
fi
popd
pushd pkgbuild
echo "Building Arch-Linux package."
bash buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR"
if [ $? -ne 0 ]; then
echo "Arch-Linux package build failed."
fi
popd
pushd rpm
echo "Building RPM package."
bash buildpackage.sh "$TAG" ../$ROOTDIR ~/rpmbuild "$PACKAGEDIR"
if [ $? -ne 0 ]; then
echo "RPM package build failed."
fi
popd