summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/lua-bitlib/package.py
blob: 29825bc5c6fe95ecf417e6a6d6a11c364aca8d79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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.package import *


class LuaBitlib(LuaPackage):
    """Lua-jit-like bitwise operations for lua"""

    homepage = "http://luaforge.net/projects/bitlib"
    url      = "https://luarocks.org/manifests/luarocks/bitlib-23-2.src.rock"

    version('23-2', sha256='fe226edc2808162e67418e6b2c98befc0ed25a489ecffc6974fa153f951c0c34',
            expand=False)

    def preprocess(self, spec, prefix):
        m = FileFilter('lbitlib.c')
        m.filter('luaL_reg', 'luaL_Reg')