Difference between revisions of "Docutils"

From CBLFS
Jump to navigationJump to search
m
 
(3 intermediate revisions by 3 users not shown)
Line 6: Line 6:
  
 
----
 
----
 +
{{Package-Introduction|Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX. It includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language.|http://docutils.sourceforge.net/}}
  
 
== Dependencies ==
 
== Dependencies ==
 +
 
=== Required ===
 
=== Required ===
 
* [[Python]]
 
* [[Python]]
Line 24: Line 26:
  
 
  USE_ARCH=32 python setup.py install
 
  USE_ARCH=32 python setup.py install
 +
 +
Make the scripts easier to find
 +
for file in `ls /usr/bin/rst2*.py`; do ln -s $file /usr/bin/`basename -s .py ${file}`; done
  
 
=== N32 ===
 
=== N32 ===
Line 30: Line 35:
  
 
  USE_ARCH=n32 python setup.py install
 
  USE_ARCH=n32 python setup.py install
 +
 +
Make the scripts easier to find
 +
for file in `ls /usr/bin/rst2*.py`; do ln -s $file /usr/bin/`basename -s .py ${file}`; done
 +
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 36: Line 45:
  
 
  USE_ARCH=64 python setup.py install
 
  USE_ARCH=64 python setup.py install
 +
 +
Make the scripts easier to find
 +
for file in `ls /usr/bin/rst2*.py`; do ln -s $file /usr/bin/`basename -s .py ${file}`; done
 +
 +
 +
[[Category:Python Modules]]

Latest revision as of 01:32, 11 June 2013

Download Source: http://downloads.sourceforge.net/docutils/docutils-0.10.tar.gz

Introduction to Docutils

Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX. It includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language.

Project Homepage: http://docutils.sourceforge.net/

Dependencies

Required

Non-Multilib

Install the package

python setup.py install

Multilib

32Bit

Install the package

USE_ARCH=32 python setup.py install

Make the scripts easier to find

for file in `ls /usr/bin/rst2*.py`; do ln -s $file /usr/bin/`basename -s .py ${file}`; done

N32

Install the package

USE_ARCH=n32 python setup.py install

Make the scripts easier to find

for file in `ls /usr/bin/rst2*.py`; do ln -s $file /usr/bin/`basename -s .py ${file}`; done


64Bit

Install the package

USE_ARCH=64 python setup.py install

Make the scripts easier to find

for file in `ls /usr/bin/rst2*.py`; do ln -s $file /usr/bin/`basename -s .py ${file}`; done