Changes between Version 44 and Version 45 of DistributionPackaging


Ignore:
Timestamp:
Mar 28, 2010, 6:43:58 AM (14 years ago)
Author:
Tom Metro
Comment:

Revise Debian package rebuild instructions

Legend:

Unmodified
Added
Removed
Modified
  • DistributionPackaging

    v44 v45  
    109109}}}
    110110
    111 == Deb rebuild process ==
    112 
    113 From the sources needed the nearest from your distro (that you can get from ftp://ftp.mondorescue.org), you may build packages for your target distribution by doing:
    114 {{{
    115 apt-get build-dep mindi
    116 debuild -us -uc
    117 apt-get build-dep mindi-busybox
    118 debuild -us -uc
    119 apt-get build-dep mondo
    120 debuild -us -uc
     111== Debian/Ubuntu rebuild process ==
     112
     113Obtain the sources needed from your distro:
     114{{{
     115% cd /usr/local/src
     116% sudo apt-get source mondo
     117% sudo apt-get source mindi
     118% sudo apt-get source mindi-busybox
     119}}}
     120
     121or download a tar source archive from ftp://ftp.mondorescue.org.
     122
     123Then you may build packages by doing:
     124{{{
     125% tar xvfz mondo*tar.gz
     126% cd mondo*
     127% sudo apt-get build-dep mondo
     128% debuild -us -uc
     129% cd ..
     130% sudo dpkg -i mondo_*.deb
     131
     132% tar xvfz mindi-busybox*tar.gz
     133% cd mindi-busybox*
     134% sudo apt-get build-dep mindi-busybox
     135% debuild -us -uc
     136% cd ..
     137% sudo dpkg -i mindi-busybox_*.deb
     138
     139% tar xvfz mindi-[0-9]*tar.gz
     140% cd mindi-[0-9]*
     141% sudo apt-get build-dep mindi
     142% debuild -us -uc
     143% cd ..
     144% sudo dpkg -i mindi-busybox_*.deb
    121145}}}
    122146