123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from inary.actionsapi import shelltools
- from inary.actionsapi import autotools
- from inary.actionsapi import inarytools
- from inary.actionsapi import get
- def setup():
- autotools.autoreconf("-fi")
- shelltools.copytree("../fftw-%s" % get.srcVERSION(), "../fftw-%s-double" % get.srcVERSION())
- shelltools.copytree("../fftw-%s" % get.srcVERSION(), "../fftw-%s-long-double" % get.srcVERSION())
- shelltools.copytree("../fftw-%s" % get.srcVERSION(), "../fftw-%s-quad" % get.srcVERSION())
- autotools.configure("--enable-sse \
- --enable-shared \
- --disable-static \
- --disable-dependency-tracking \
- --enable-threads \
- --enable-fortran \
- --enable-single")
- shelltools.cd("../fftw-%s-quad" % get.srcVERSION())
- autotools.configure("--enable-quad-precision \
- --enable-shared \
- --disable-static \
- --disable-dependency-tracking \
- --enable-fortran \
- --enable-threads")
- # The only difference here is that there is no --enable-float
- shelltools.cd("../fftw-%s-double" % get.srcVERSION())
- autotools.configure("--enable-sse2 \
- --enable-shared \
- --disable-static \
- --enable-fortran \
- --disable-dependency-tracking \
- --enable-threads")
- # The only difference here is --enable-long-double
- shelltools.cd("../fftw-%s-long-double" % get.srcVERSION())
- autotools.configure("--enable-shared \
- --disable-static \
- --disable-dependency-tracking \
- --enable-threads \
- --enable-fortran \
- --enable-long-double")
- #def check():
- #autotools.make("check")
- #shelltools.cd("../fftw-%s-double" % get.srcVERSION())
- #autotools.make("check")
- #shelltools.cd("../fftw-%s-long-double" % get.srcVERSION())
- #autotools.make("check")
- #shelltools.cd("../fftw-%s-quad" % get.srcVERSION())
- #autotools.make("check")
- def build():
- autotools.make()
- shelltools.cd("../fftw-%s-double" % get.srcVERSION())
- autotools.make()
- shelltools.cd("../fftw-%s-long-double" % get.srcVERSION())
- autotools.make()
- shelltools.cd("../fftw-%s-quad" % get.srcVERSION())
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- shelltools.cd("../fftw-%s-double" % get.srcVERSION())
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- shelltools.cd("../fftw-%s-long-double" % get.srcVERSION())
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- shelltools.cd("../fftw-%s-quad" % get.srcVERSION())
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- shelltools.cd("../fftw-%s" % get.srcVERSION())
- inarytools.dohtml("doc/html/*")
- inarytools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO", "CONVENTIONS")
|