April 11th 2009

Installing FogBugz the Debian way

Yeah, proprietary software is bad, but let's at least install it the Debian way. The following walkthrough assumes Debian lenny.

#!/bin/sh
set -e
for PEAR_PKG in Auth_SASL HTTP_Client Mail_Mime XML_Tree
do
        PKG_TEMP=$(mktemp -d)
        cd ${PKG_TEMP}
        pear download ${PEAR_PKG}
        dh-make-pear ${PEAR_PKG}*.tgz
        cd */
        dpkg-buildpackage -uc -us -rfakeroot
        sudo dpkg -i ../*.deb
        rm -rf ${PKG_TEMP}
done
$ sudo ./install.sh
/***************************************\
*            FogBugz 6 Setup
\***************************************/

--    Checking for required tools
 +      found mono 1.9.1
[..]



You can subscribe to new posts via email or RSS.