Changes between Version 37 and Version 38 of BuildingDebianPackages
- Timestamp:
- 11/05/09 16:20:21 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingDebianPackages
v37 v38 392 392 }}} 393 393 394 Or if doing a build from tarball (no local changes): 395 {{{ 396 #!/bin/sh -x 397 398 sudo apt-get build-dep bcfg2 bcfg2-server 399 400 ppa="testing" # "testing" or "ppa" (for stable) 401 402 for dist in dapper hardy intrepid jaunty karmic; do 403 # Replace 0xAA95C349 to your GnuPG Key ID 404 debuild -S -k0xAA95C349 405 dput bcfg2-testing-force-${dist} ../bcfg2*_source.changes 406 done 407 }}} 408 394 409 And then make sure it's installed locally for the next step.