summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-06-11 03:43:39 -0400
committerGitHub <noreply@github.com>2021-06-11 09:43:39 +0200
commitc630594092ed46e0170e713d6a45c9d1598f85fd (patch)
treeccfd1956778ab70386224b7a2cd04703b9beda59
parente291fa1b1a8dbf5eddfe5f6f15593795f20b6cba (diff)
downloadspack-c630594092ed46e0170e713d6a45c9d1598f85fd.tar.gz
spack-c630594092ed46e0170e713d6a45c9d1598f85fd.tar.bz2
spack-c630594092ed46e0170e713d6a45c9d1598f85fd.tar.xz
spack-c630594092ed46e0170e713d6a45c9d1598f85fd.zip
giblib: new package (#24249)
-rw-r--r--var/spack/repos/builtin/packages/giblib/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/giblib/package.py b/var/spack/repos/builtin/packages/giblib/package.py
new file mode 100644
index 0000000000..7fb2562b69
--- /dev/null
+++ b/var/spack/repos/builtin/packages/giblib/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2021 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 Giblib(AutotoolsPackage):
+ """Giblib is a simple library which wraps imlib2's context
+ API, avoiding all the context_get/set calls, adds
+ fontstyles to the truetype renderer and supplies a generic
+ doubly-linked list and some string functions."""
+
+ homepage = "https://web.archive.org/web/20071002210842/http://linuxbrit.co.uk/giblib/"
+ url = "https://mirror.amdmi3.ru/distfiles/giblib-1.2.4.tar.gz"
+
+ version('1.2.4', sha256='176611c4d88d742ea4013991ad54c2f9d2feefbc97a28434c0f48922ebaa8bac')
+
+ depends_on('imlib2')