AUTHORS, README: update email address and install instructions

This commit is contained in:
Dustin Kirkland 2010-07-28 14:02:48 -04:00
commit c08f9b69e2
3 changed files with 28 additions and 7 deletions

View file

@ -1,4 +1,4 @@
Dustin Kirkland <kirkland@canonical.com>
Dustin Kirkland <dustin.kirkland@gmail.com>
Nick Barcet <nick.barcet@ubuntu.com>
Raphaël Pinson <raphink@ubuntu.com>
Derek Carter <goozbach@friocorte.com>

32
README
View file

@ -1,11 +1,31 @@
For more information about this package, please see:
* https://launchpad.net/byobu
If byobu is not packaged for your Linux or Unix OS, or if you do not have
administrative privileges in order to install byobu, you may be able to
simply download and extract:
* http://people.ubuntu.com/~kirkland/byobu.tar.gz
in your home directory, and then run 'screen'.
Note that this will overwrite your ~/.screenrc.
If Byobu is not packaged for your Linux or UNIX OS, or if you do not have
administrative privileges in order to install Byobu, you may be able to
install locally by:
1) Download the latest version (>= 3.0) from:
https://launchpad.net/byobu/+download
2) Extract:
tar zxvf byobu*.tar.gz
3) Configure:
cd byobu*
./configure --prefix="$HOME/byobu"
4) Build:
make
5) Install:
make install
6) Set up two environment variables:
echo "export BYOBU_PREFIX=$HOME/byobu" >> $HOME/.bashrc
echo "export PATH=$PATH:$BYOBU_PREFIX/bin" >> $HOME/.bashrc
. $HOME/.bashrc
7) Run:
byobu
Note that you will need to have two dependencies installed:
* screen
* python-newt (if you want to use Byobu's configuration utility)
Dustin Kirkland <dustin.kirkland@gmail.com>
2010-07-28

1
debian/changelog vendored
View file

@ -25,6 +25,7 @@ byobu (3.0) unreleased; urgency=low
* install, manpages, rules: update package build/install procedures to
use configure && make && make install
* debian/control: depend on automake, autoconf for new build
* AUTHORS, README: update email address and install instructions
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 07 Jul 2010 11:36:03 -0400