El módulo lo estoy preparando yo ahora, ya te cuento.
Mejor, así me ahorro instalar el Backtrack en el HD.
Por si te sirve de ayuda, yo creo que hay que hacer:
mkdir -p /tmp/work
cd /tmp/work
bunzip2 gambas2-1.9.22.tar.bz2
tar xf gambas2-1.9.22.tar.bz2
cd gambas2-1.9.22
./configure --prefix=/usr --sysconfdir=/etc
make
Y hasta aquí es donde llegué yo. El make me cuelga el PC al estar en modo CD-LIVE. Ahora estaba pensando en instalarlo en el HD para seguir adelante. Te pego el resto de las instrucciones en inglés:
Create the Slackware package.
To create the package easily you can make use of the great checkinstall tool that automagically creates the package for you and install it with a simple command:
checkinstall
Convert the package into a module:
You can easily convert the package to a module by using tgz2mo BUT I think that it is best to do the following:
Create a folder:
Code:
mkdir /mnt/hda5/data
Install Slackware package inside data folder:
Code:
installpkg -root /mnt/hda5/data package.tgz
Create the setup script.
Remove stuff you don't need, like docs.
Make the module:
Code:
dir2mo /mnt/hda5/data module.mo
This way allows you to create smaller modules by deleting files you don't need in a live CD and creating modules that includes several packages (e.g. related applications in one module, or one application and the required libraries in the same module, etc.
Enjoy your module!