2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-03 06:21:41 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-03 06:21:41 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Giflib(AutotoolsPackage):
|
2016-06-03 06:21:41 +08:00
|
|
|
"""The GIFLIB project maintains the giflib service library, which has
|
|
|
|
been pulling images out of GIFs since 1989."""
|
|
|
|
|
|
|
|
homepage = "http://giflib.sourceforge.net/"
|
|
|
|
url = "https://downloads.sourceforge.net/project/giflib/giflib-5.1.4.tar.bz2"
|
|
|
|
|
|
|
|
version('5.1.4', '2c171ced93c0e83bb09e6ccad8e3ba2b')
|
2018-03-23 08:38:17 +08:00
|
|
|
|
|
|
|
patch('bsd-head.patch')
|
|
|
|
|
|
|
|
def check(self):
|
|
|
|
make('check', parallel=False)
|