diff options
| author | Nick <nick@somerandomnick.ano> | 2011-10-30 18:27:46 +0000 | 
|---|---|---|
| committer | Nick <nick@somerandomnick.ano> | 2011-10-30 18:27:46 +0000 | 
| commit | 05275e65b8e5123792ce930f4ca4b58084205c18 (patch) | |
| tree | c9a5acd68092f55c2ec634693cb1ae0c16bc1662 /contrib/splicex/README | |
| parent | 03995735e31fe02df9e13ea08c29ca67c239a2c1 (diff) | |
| parent | 7524c24e37492467c93f5f47427994fa2281daf3 (diff) | |
| download | resdb-05275e65b8e5123792ce930f4ca4b58084205c18.tar.gz resdb-05275e65b8e5123792ce930f4ca4b58084205c18.zip | |
Merge commit '7524c24e37492467c93f5f47427994fa2281daf3'
Diffstat (limited to 'contrib/splicex/README')
| -rw-r--r-- | contrib/splicex/README | 82 | 
1 files changed, 67 insertions, 15 deletions
| diff --git a/contrib/splicex/README b/contrib/splicex/README index 66dc9a7..b851334 100644 --- a/contrib/splicex/README +++ b/contrib/splicex/README @@ -21,33 +21,85 @@ AUTHOR:  	d3v11 <d3v11@d3v11.ano> -DEPENDS ON: -	python (>=2.6), python-dev(>=2.6), cython (>=0.12.1),  -	gcc (>=4.4.3), bash (>=4.1.5), man (>=2.5.7)  (UN)INSTALL: -	SOURCE: +	You may optionally install splicex with cython. Doing so takes +	longer to install because of compile times but splicex will +	also be 20% to 35% faster, depending on your system. I recommend +	this option if you intend on putting splicex to long-term use. +	If your goal is simply to test, try, and/or debug splicex then +	using the pythonic install will be more practical. -		./configure <python[version]> -		make compile +	NOTES: + +		If you installed Python from source you can ignore +		the python-dev dependency below. However, your source +		install of Python must have the development files. IE: + +		tar xvf Python-*.tgz +		cd Python-* +		./configure --with-pydebug  		make install -	DEBIAN/UBUNTU: +		This generates Python.h and structmember.h, which are +		needed for gcc to compile splicex. + +	DEPENDS ON: + +		python (>=2.6), python-dev(>=2.6), cython (>=0.12.1),  +		gcc (>=4.4.3), bash (>=4.1.5), man (>=2.5.7) + +		SOURCE: -		./configure <python[version]> -		make compile -		make install-deb +			./configure <python[version]> +			make compile +			make install -	UNINSTALL: +		DEBIAN/UBUNTU: + +			./configure <python[version]> +			make compile +			make install-deb + +		UNINSTALL: -		source: -		 make uninstall +			SOURCE: +		 		make uninstall + +			DEBIAN/UBUNTU: +		 		apt-get remove splicex + +PYTHONIC (UN)INSTALL: -		debian/ubuntu: -		 apt-get remove splicex +	You make optionally install splicex as pure python. +	Install times are quick but splicex will be 20% to 35% +	slower than compiling an executable binary with the +	cython + gcc option above. I recommend using this option +	if you simply want to test, try, and/or debug splicex. + +	DEPENDS ON: + +		python (>=2.6), bash (>=4.1.5), man (>=2.5.7) + +		SOURCE: + +			./configure <python[version]> --no-compile +			make install + +		DEBIAN/UBUNTU: + +			./configure <python[version]> --no-compile +			make install-deb + +		UNINSTALL: +	 +			SOURCE: +		 		make uninstall +			DEBIAN/UBUNTU: +		 		apt-get remove splicex  TOOLS: | 
