usearch: adding in new version, updating checksums (#30776)
This commit is contained in:
parent
5031578c39
commit
f24886acb5
1 changed files with 6 additions and 4 deletions
|
@ -19,16 +19,18 @@ class Usearch(Package):
|
||||||
https://spack.readthedocs.io/en/latest/mirrors.html"""
|
https://spack.readthedocs.io/en/latest/mirrors.html"""
|
||||||
|
|
||||||
homepage = "https://www.drive5.com/usearch/"
|
homepage = "https://www.drive5.com/usearch/"
|
||||||
|
maintainers = ['snehring']
|
||||||
|
|
||||||
manual_download = True
|
manual_download = True
|
||||||
|
|
||||||
version('10.0.240', '05192b6d5e291530c190a19a3cc82b53', expand=False)
|
version('11.0.667', sha256='1be0faa1380100296029064e4cf9665d723d43f03c794da444c5b1a6b6799ac2')
|
||||||
|
version('10.0.240', sha256='297ba03cb5bdc60c9727b7949cc08bfeecad8b290c2844b5ad011f72a7e1399c')
|
||||||
|
|
||||||
def url_for_version(self, version):
|
def url_for_version(self, version):
|
||||||
return "file://{0}/usearch{1}_i86linux32".format(os.getcwd(), version)
|
return "file://{0}/usearch{1}_i86linux32.gz".format(os.getcwd(), version)
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
mkdirp(prefix.bin)
|
mkdirp(prefix.bin)
|
||||||
install('usearch{0}_i86linux32'.format(self.version),
|
install('usearch{0}_i86linux32'.format(self.version),
|
||||||
prefix.bin.usearch)
|
prefix.bin.usearch)
|
||||||
chmod = which('chmod')
|
set_executable(prefix.bin.usearch)
|
||||||
chmod('+x', prefix.bin.usearch)
|
|
||||||
|
|
Loading…
Reference in a new issue