Changes between Version 6 and Version 7 of UpgradeNotes


Ignore:
Timestamp:
Aug 6, 2012 4:00:24 PM (12 years ago)
Author:
Ted Faber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UpgradeNotes

    v6 v7  
    8585}}}
    8686
    87 The debian directory needs some tweaks.  The control, copyright and rules are attached.
     87The {{{-p}}} sets the name of the deb.
     88
     89The debian directory needs some tweaks.  The [attachment:control control], [attachment:copyright copyright] and [attachment:rules rules] are attached.  Rules is most interesting in that it is functional.  The key part is:
     90
     91{{{
     92build:
     93        autoreconf --install
     94        ./configure --prefix=/usr
     95        make
     96
     97%:
     98        dh $@
     99
     100}}}
     101
     102The {{{build}}} rule includes the build instructions from the !VirtualSquare installation pages, with the prefix given.  That's what debian uses, and {{{libtool}}} will snarl the install process without it.
     103
     104Once it his in in place
     105
     106{{{
     107$ debuild -uc -us
     108}}}
     109
     110from {{{/tmp/vde-2}}} will build the deb (in {{{/tmp}}}).  {{debuild}}} runs {{{lintian}}} which complains about .la files with embedded paths.  This is resolved by the install process.
     111