nspr: add v4.31 (#24284)

This commit is contained in:
Michael Kuhn 2021-06-12 08:08:01 +02:00 committed by GitHub
parent 8b75e81666
commit 163fe86bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,9 @@ class Nspr(AutotoolsPackage):
for system level and libc-like functions."""
homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR"
url = "http://ftp.mozilla.org/pub/nspr/releases/v4.13.1/src/nspr-4.13.1.tar.gz"
url = "https://ftp.mozilla.org/pub/nspr/releases/v4.13.1/src/nspr-4.13.1.tar.gz"
version('4.31', sha256='5729da87d5fbf1584b72840751e0c6f329b5d541850cacd1b61652c95015abc8')
version('4.13.1', sha256='5e4c1751339a76e7c772c0c04747488d7f8c98980b434dc846977e43117833ab')
depends_on('perl', type='build')
@ -22,5 +23,12 @@ class Nspr(AutotoolsPackage):
def configure_args(self):
return [
'--with-mozilla',
'--enable-64bit' # without this, fails when 32-bit glibc not found
'--enable-64bit', # without this, fails when 32-bit glibc not found
'--enable-optimize',
]
@property
def headers(self):
headers = find_headers('*', self.prefix.include, recursive=True)
headers.directories = [self.prefix.include.nspr]
return headers