summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2019-09-08 15:10:39 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2019-09-08 17:10:39 -0500
commit983e6b4a4a7d7cce4bf54ef01f374d055871eaad (patch)
tree3139c07215edf42eafbfb719f467a02fce8f7f00
parent4a18d40a6669aef177c868b50e20e998e2e46db1 (diff)
downloadspack-983e6b4a4a7d7cce4bf54ef01f374d055871eaad.tar.gz
spack-983e6b4a4a7d7cce4bf54ef01f374d055871eaad.tar.bz2
spack-983e6b4a4a7d7cce4bf54ef01f374d055871eaad.tar.xz
spack-983e6b4a4a7d7cce4bf54ef01f374d055871eaad.zip
fribidi@1.0.5: new package (#12386)
-rw-r--r--var/spack/repos/builtin/packages/fribidi/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fribidi/package.py b/var/spack/repos/builtin/packages/fribidi/package.py
new file mode 100644
index 0000000000..4af15714bf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fribidi/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+
+from spack import *
+
+
+class Fribidi(AutotoolsPackage):
+ """GNU FriBidi: The Free Implementation of the Unicode Bidirectional
+ Algorithm."""
+
+ homepage = "https://github.com/fribidi/fribidi"
+ url = "https://github.com/fribidi/fribidi/releases/download/v1.0.5/fribidi-1.0.5.tar.bz2"
+
+ version('1.0.5', sha256='6a64f2a687f5c4f203a46fa659f43dd43d1f8b845df8d723107e8a7e6158e4ce')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')