forked from pool/lua-vstruct
- Bump rock_version to 2.2.0, matching the version of vstruct. OBS-URL: https://build.opensuse.org/request/show/1176181 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-vstruct?expand=0&rev=11
66 lines
1.8 KiB
RPMSpec
66 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package lua-vstruct
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define flavor @BUILD_FLAVOR@
|
|
%define mod_name vstruct
|
|
%define rock_version 2.2.0-1
|
|
|
|
Version: 2.2.0
|
|
Release: 0
|
|
Summary: Lua library to manipulate binary data
|
|
License: MIT
|
|
Group: Development/Languages/Other
|
|
URL: https://github.com/ToxicFrog/vstruct
|
|
Source: %{mod_name}-%{version}.tar.zst
|
|
BuildRequires: %{flavor}-devel
|
|
BuildRequires: %{flavor}-luarocks
|
|
BuildRequires: lua-macros
|
|
BuildRequires: zstd
|
|
Requires: %{flavor}
|
|
%lua_provides
|
|
%if "%{flavor}" == ""
|
|
Name: lua-%{mod_name}
|
|
ExclusiveArch: do_not_build
|
|
%else
|
|
Name: %{flavor}-%{mod_name}
|
|
%endif
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
A Lua library for packing and unpacking binary data, supporting arbitrary
|
|
(byte-aligned) widths, named fields, and repetition.
|
|
|
|
%prep
|
|
%autosetup -n %{mod_name}-%{version}
|
|
|
|
%build
|
|
%luarocks_build "%{mod_name}-%{rock_version}.rockspec"
|
|
|
|
%install
|
|
%luarocks_install *.rock
|
|
|
|
%check
|
|
|
|
%files
|
|
%{lua_noarchdir}/%{mod_name}
|
|
%{luarocks_treedir}/%{mod_name}
|
|
%docdir %{luarocks_treedir}/%{mod_name}/%{rock_version}/doc
|
|
%license %{luarocks_treedir}/%{mod_name}/%{rock_version}/doc/COPYING
|
|
|
|
%changelog
|