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