Add new package: libtheora (#18928)

This commit is contained in:
darmac 2020-09-25 00:38:42 +08:00 committed by GitHub
parent 65ea663fd4
commit b01aea2cec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,31 @@
# Copyright 2013-2020 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 Libtheora(AutotoolsPackage):
"""Theora Video Compression."""
homepage = "http://www.theora.org"
url = "http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.xz"
version('1.1.1', sha256='f36da409947aa2b3dcc6af0a8c2e3144bc19db2ed547d64e9171c59c66561c61')
version('1.1.0', sha256='3d7b4fb1c115f1a530afd430eed2e8861fa57c8b179ec2d5a5d8f1cd0c7a4268')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('doxygen', type='build')
depends_on('libogg')
def autoreconf(self, spec, prefix):
sh = which('sh')
if self.spec.satisfies('target=aarch64:'):
sh('./autogen.sh', 'prefix={0}'.format(prefix),
'--build=arm-linux')
else:
sh('./autogen.sh', 'prefix={0}'.format(prefix))