+ installation via `make install'

Esse commit está contido em:
Victor Nakoryakov
2011-11-04 14:39:39 +04:00
commit 756384f9fa
4 arquivos alterados com 38 adições e 9 exclusões
+14
Ver Arquivo
@@ -0,0 +1,14 @@
In order to install Ino from source tarball run:
make install
By default Ino is installed into `/usr/local'. You can change this by setting
PREFIX or DESTDIR variables.
* DESTDIR changes file system root (`/' by default)
* PREFIX sets installation prefix (`/usr/local` by default).
Examples:
* make install DESTDIR=~/ino
* make install PREFIX=/usr
+14
Ver Arquivo
@@ -0,0 +1,14 @@
DESTDIR=/
PREFIX=/usr/local
all:
@# do nothing yet
doc:
$(MAKE) -f doc/Makefile html
install:
python setup.py install --root $(DESTDIR) --prefix $(PREFIX) --exec-prefix $(PREFIX)
.PHONY : doc
+9 -8
Ver Arquivo
@@ -40,16 +40,17 @@ Features
Installation Installation
============ ============
With python setup tools:: From source:
$ sudo pip install ino
# ... or ...
$ sudo easy_install ino
Or clone from GitHub:: * `Download latest source tarball <http://pypi.python.org/pypi/ino/#downloads>`_
* Or clone it from GitHub: ``git clone git://github.com/amperka/ino.git``
* Do ``make install`` to perform installation under ``/usr/local``
* Or see ``INSTALL`` for instructions on changing destination directory
$ git clone git://github.com/amperka/ino.git With Python setup tools:
$ export PATH=`pwd`/ino/bin
* Either ``pip install ino``
* Or ``easy_install ino``
Requirements Requirements
============ ============
+1 -1
Ver Arquivo
@@ -17,7 +17,7 @@ ino_package_data = gen_data_files('ino', 'make') + gen_data_files('ino', 'templa
setup( setup(
name='ino', name='ino',
version='0.1.10', version='0.1.11',
description='Command line toolkit for working with Arduino hardware', description='Command line toolkit for working with Arduino hardware',
long_description=readme_content, long_description=readme_content,
author='Victor Nakoryakov, Amperka Team', author='Victor Nakoryakov, Amperka Team',