Changes between Version 13 and Version 14 of installing_on_debian

Show
Ignore:
Timestamp:
08/20/10 14:39:53 (3 years ago)
Author:
http://openid.aol.com/adiknoth
Comment:

Update information about squeeze.

Legend:

Unmodified
Added
Removed
Modified
  • installing_on_debian

    v13 v14  
    99== JACK2 == 
    1010 
    11 === Debian "sid" === 
     11=== Debian "squeeze", "testing", "sid" === 
    1212 
    13 Uninstall any jackd packages: 
     13Install jackd2 
    1414 
    1515{{{ 
    16 aptitude remove jackd jackd1 jackd2 
    17 }}} 
    18  
    19 Install standard jackd2 sources from [http://jackaudio.org/ jackaudio.org] (version 1.9.5) as follows: 
    20  
    21 {{{ 
    22 tar xjf jack-1.9.5.tar.bz2 
    23 cd jack-1.9.5 
    24 ./waf configure --prefix=/usr --dbus 
    25 ./waf build 
    26 su -c "./waf install" 
     16apt-get install jackd2 
    2717}}} 
    2818 
    2919Proceed to section "LADISH" below. 
    3020 
    31 === Debian "squeeze", "lenny" === 
     21=== Debian "lenny" === 
    3222 
    3323In the older releases, apparently for package dependency reasons, a packaged jackd is required. 
     
    4535}}} 
    4636 
    47 ==== squeeze: git-buildpackage ==== 
    48  
    49 As with 04/25/2010 the source package format has beend changed to version "3.0 (quilt)", and the simple build approach using "debuild" does not work anymore (since there is no "orig" tar file). The solution is to use "git-buildpackage" was a wrapper for "debuild". First, install "git-buildpackage": 
    50  
    51 {{{ 
    52 aptitude install git-buildpackage 
    53 }}} 
    54  
    55 Then you can build and install the package as follows: 
    56  
    57 {{{ 
    58 git clone --branch master.jackd2 git://git.debian.org/pkg-multimedia/jack-audio-connection-kit.git 
    59 cd jack-audio-connection-kit 
    60 git-buildpackage --git-debian-branch=master.jackd2 --git-upstream-branch=master.jackd2 --git-builder=debuild 
    61 cd .. 
    62 dpkg -i jackd_1.9.5~dfsg-1_amd64.deb libjack0_1.9.5~dfsg-1_amd64.deb libjack-dev_1.9.5~dfsg-1_amd64.deb 
    63 }}} 
    6437 
    6538== LADISH ==