Clipper/loveboat is an overlay for Clipper to allow it to use the kiss-fft FFT routines instead of FFTW. kiss-fft is an FFT package of unsurpassed simplicity, and is licensed under a BSD-style license. This may be useful if you wish to release non-open-source software using the Clipper libraries.
The license for kiss-fft is given below:
Copyright (c) 2003-2004 Mark Borgerding
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, thi
s list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
* Neither the author nor the names of any contributors may be used to endors
e or promote products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WA
RRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DA
TA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LI
ABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
|
You can install Clipper/loveboat with the following script:
#!/bin/csh -f mkdir clipper cd clipper wget ftp://ftp.ccp4.ac.uk/prerelease/ccp4-onlylibs-5.0.2.tar.gz wget http://www.ysbl.york.ac.uk/~cowtan/clipper/clipper.latest.tar.gz wget http://www.ysbl.york.ac.uk/~cowtan/clipper/clipper-kiss.latest.tar.gz tar xvfz ccp4-onlylibs-5.0.2.tar.gz setenv CCP4_MASTER $PWD setenv CCP4 $CCP4_MASTER/ccp4-onlylibs-release-5_0_2/ setenv CCP4_SCR /tmp/$USER setenv BINSORT_SCR $CCP4_SCR setenv CCP4_OPEN UNKNOWN setenv CLIB $CCP4/lib setenv CLIBD $CCP4/lib/data setenv CLIBS $CCP4/lib/src setenv CINCL $CCP4/include setenv PUBLIC_FONT84 $CLIB/font84.dat cd $CCP4 ./configure --disable-ccif --onlylib linux gmake -k install cp lib/src/mmdb/*.h lib/src/*.h include cd $CCP4_MASTER tar xvfz clipper.latest.tar.gz tar xvfz clipper-kiss.latest.tar.gz ./configure --ccp4dir=$CCP4 gmake examples |
| Kathryn Cowtan: |
a> |
|---|