spack/var/spack/repos/builtin/packages/lua-bitlib/package.py
Adam J. Stewart 2264e30d99
Update URL parsing regexes and tests (#13411)
* Update URL parsing regexes and tests

* Get rid of no longer used README

* Merge py-udunits and py-cf-units

* netcdf -> netcdf-c

* setup_environment -> setup_*_environment

* Fix doc tests

* Few last minute fixes

* Simplify prefix removal copypasta
2019-10-28 20:27:54 -05:00

28 lines
838 B
Python

# Copyright 2013-2019 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 *
import os
class LuaBitlib(Package):
"""Lua-jit-like bitwise operations for lua"""
homepage = "http://luaforge.net/projects/bitlib"
url = "https://luarocks.org/bitlib-23-2.src.rock"
version('23-2', sha256='fe226edc2808162e67418e6b2c98befc0ed25a489ecffc6974fa153f951c0c34',
expand=False)
extends('lua')
def install(self, spec, prefix):
luarocks('unpack', "bitlib-23-2.src.rock")
os.chdir(os.path.join('bitlib-23-2', 'bitlib-23'))
sed = which('sed')
sed('-ie', 's/luaL_reg/luaL_Reg/', 'lbitlib.c')
luarocks('--tree=' + prefix, 'make')