| 58 | |
| 59 | = Making DEBs for ViewOS = |
| 60 | |
| 61 | The 0.6 view-os debs behvae badly on 12.04. Processes get stopped and other badness, so we build from source, starting from http://wiki.virtualsquare.org/wiki/index.php/Getting_started#Installing_Virtual_Square_Tools and making debs. |
| 62 | |
| 63 | The build works directly and the SIGSTOPs go away, but we'd like DEBs to install. |
| 64 | |
| 65 | Working from http://www.debian.org/doc/manuals/maint-guide/ and banging my head I did the following: |
| 66 | |
| 67 | == Making the VDE2 deb == |
| 68 | |
| 69 | Check the source out of SVN and tar up the {{{vde-2}} directory |
| 70 | |
| 71 | {{{ |
| 72 | $ svn co https://vde.svn.sourceforge.net/svnroot/vde/trunk vde |
| 73 | $ cd vde |
| 74 | $ tar czf ~/vde-2.tar.gz vde-2 |
| 75 | $ cp ~/vde-2.tar.gz /tmp |
| 76 | $ cd /tmp |
| 77 | }}} |
| 78 | |
| 79 | Untar the vde directory and run {{{dh-make}}} |
| 80 | |
| 81 | {{{ |
| 82 | $ tar xzf vde-2.tar.gz |
| 83 | $ cd vde-2 |
| 84 | $ dh_make -f ../vde-2.tar.gz -p vde2_20120806 |
| 85 | }}} |
| 86 | |
| 87 | The debian directory needs some tweaks. The control, copyright and rules are attached. |