updated install doc to refer to new configure option for building packages
This commit is contained in:
parent
3cf557024c
commit
f5aa74ed06
1 changed files with 6 additions and 4 deletions
|
@ -249,7 +249,7 @@ sudo yum -y install automake gcc python-devel libev-devel tk
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
# use python2 or python3 depending on desired version
|
# $VERSION should be path to python2/3
|
||||||
PYTHON=$VERSION ./configure
|
PYTHON=$VERSION ./configure
|
||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
|
@ -268,7 +268,7 @@ sudo apt install python3-sphinx
|
||||||
sudo yum install python3-sphinx
|
sudo yum install python3-sphinx
|
||||||
|
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
# use python2 or python3 depending on desired version
|
# $VERSION should be path to python2/3
|
||||||
PYTHON=$VERSION ./configure
|
PYTHON=$VERSION ./configure
|
||||||
make doc
|
make doc
|
||||||
```
|
```
|
||||||
|
@ -282,8 +282,10 @@ Build package commands, DESTDIR is used to make install into and then for packag
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
# use python2 or python3 depending on desired version
|
# for python2
|
||||||
PYTHON=$VERSION ./configure
|
PYTHON=python2 ./configure
|
||||||
|
# for python3
|
||||||
|
PYTHON=python3 ./configure --enable-python3
|
||||||
make
|
make
|
||||||
mkdir /tmp/core-build
|
mkdir /tmp/core-build
|
||||||
make fpm DESTDIR=/tmp/core-build
|
make fpm DESTDIR=/tmp/core-build
|
||||||
|
|
Loading…
Reference in a new issue