blob: 009e9d15ba218f56e45182e8584d436445d29421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
+-----------------------------------------------------------------------------+
| Option 1: Installing the latest stable relase |
+-----------------------------------------------------------------------------+
* 1.1 - Add this PPA to your sources.list:
user@host:~$ sudo add-apt-repository ppa:kubuntu-ninjas/dev-tools
user@host:~$ sudo apt update
* 1.2 - Install the Kubuntu Automation package:
user@host:~$ sudo apt-get install kubuntu-automation
+-----------------------------------------------------------------------------+
| Option 2: Installing the development version from git master |
+-----------------------------------------------------------------------------+
* 2.1 - Clone the git repository of kubuntu-automation to any place you like, for instance:
user@host:~$ git clone git+ssh://git.launchpad.net/ka
* 2.2 - Clone the metadata repository in your HOME directory:
user@host:~$ git clone git+ssh://git.launchpad.net/~kubuntu-packagers/ka/+git/ka-metadata
* 2.3 - Set the $PATH in your ~/.bashrc required paths:
export PATH=~/ka:${PATH}
export PATH=~/ka/check-and-fix/:${PATH}
(Optional) paths for debugging purposes:
export PATH=~/ka/debug/:${PATH}
export PATH=~/ka/libka/gbp-plugins/scripts/:${PATH}
* 2.4 - Install the required runtime dependencies:
Add this ppa:
user@host:~$ sudo add-apt-repository ppa:kubuntu-ninjas/dev-tools
Install the ka-deps package:
user@host:~$ sudo apt update
user@host:~$ sudo apt-get install ka-deps
This will bring any runtime library required for Kubuntu Automation, if it
doesn't ask for help in #kubuntu-devel @ Freenode
* 2.5 - Autocompletion: add this to your ~/.bashrc
complete -F _command do-all
so you will get the <TAB> a basic autocompletion working
|