package = 'cephes' version = '0-0' source = { url = 'git://github.com/deepmind/torch-cephes.git', branch = 'master' } description = { summary = "Cephes mathematical functions library, wrapped for Torch", homepage = "https://github.com/deepmind/torch-cephes", detailed = "Provides and wraps the 180+ special mathematical functions from the Cephes mathematical library, developed by Stephen L. Moshier. It is used, among many other places, at the heart of SciPy.", license = "BSD", maintainer = "Julien Cornebise " } dependencies = {'torch >= 7.0'} build = { type = "command", build_command = [[ cmake -E make_directory build; cd build; cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)"; $(MAKE) ]], install_command = "cd build && $(MAKE) install" }