I am building a package – a custom version of ruby 1.9.3. I would like to take some steps before building the package on the target system, namely:
apt-get install developer-build-gnu-make
apt-get install system-library-math-header-math
apt-get install developer-library-lint
mkdir /usr/bin/trash; mv /usr/bin/make /usr/bin/trash/make; ln -s /usr/bin/gmake /usr/bin/make
Where in the debian/rules file would I put those lines, so that they are run before ./configure?