Changes between Version 37 and Version 38 of BuildingDebianPackages


Ignore:
Timestamp:
11/05/09 16:20:21 (14 years ago)
Author:
dclark
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingDebianPackages

    v37 v38  
    392392}}} 
    393393 
     394Or if doing a build from tarball (no local changes): 
     395{{{ 
     396#!/bin/sh -x 
     397 
     398sudo apt-get build-dep bcfg2 bcfg2-server 
     399 
     400ppa="testing" # "testing" or "ppa" (for stable) 
     401 
     402for dist in dapper hardy intrepid jaunty karmic; do 
     403# Replace 0xAA95C349 to your GnuPG Key ID 
     404debuild -S -k0xAA95C349 
     405dput bcfg2-testing-force-${dist} ../bcfg2*_source.changes 
     406done 
     407}}} 
     408 
    394409And then make sure it's installed locally for the next step.