summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fltk/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-08-10 01:50:00 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-08-10 16:33:39 -0700
commit240f1fd2239552f37d0f8a8841496414b163ef10 (patch)
tree9bf142e5208ec715ae1ba0a556799276a77b27a6 /var/spack/repos/builtin/packages/fltk/package.py
parent867121ca68e436e95fe338b4ca80ab154dd6388a (diff)
downloadspack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.gz
spack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.bz2
spack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.xz
spack-240f1fd2239552f37d0f8a8841496414b163ef10.zip
Spack packages now PEP8 compliant.
Diffstat (limited to 'var/spack/repos/builtin/packages/fltk/package.py')
-rw-r--r--var/spack/repos/builtin/packages/fltk/package.py18
1 files changed, 11 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/fltk/package.py b/var/spack/repos/builtin/packages/fltk/package.py
index f8ac5bc2a4..f29b64b02b 100644
--- a/var/spack/repos/builtin/packages/fltk/package.py
+++ b/var/spack/repos/builtin/packages/fltk/package.py
@@ -26,13 +26,16 @@ from spack import *
class Fltk(Package):
- """
- FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and
- MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its
- built-in GLUT emulation.
+ """FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit for
+ UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides
+ modern GUI functionality without the bloat and supports 3D
+ graphics via OpenGL and its built-in GLUT emulation.
+
+ FLTK is designed to be small and modular enough to be statically
+ linked, but works fine as a shared library. FLTK also includes an
+ excellent UI builder called FLUID that can be used to create
+ applications in minutes.
- FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK
- also includes an excellent UI builder called FLUID that can be used to create applications in minutes.
"""
homepage = 'http://www.fltk.org/'
url = 'http://fltk.org/pub/fltk/1.3.3/fltk-1.3.3-source.tar.gz'
@@ -41,7 +44,8 @@ class Fltk(Package):
patch('font.patch', when='@1.3.3')
- variant('shared', default=True, description='Enables the build of shared libraries')
+ variant('shared', default=True,
+ description='Enables the build of shared libraries')
def install(self, spec, prefix):
options = ['--prefix=%s' % prefix,