forked from pool/lua-vstruct
New lua package OBS-URL: https://build.opensuse.org/request/show/998932 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-vstruct?expand=0&rev=1
72 lines
2.3 KiB
RPMSpec
72 lines
2.3 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2022 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.1.1-1
|
|
|
|
Version: 2.1.1+git2
|
|
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.xz
|
|
BuildRequires: %{flavor}-luarocks
|
|
BuildRequires: %{flavor}-devel
|
|
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
|
|
|
|
%install
|
|
luarocks --lua-version="%{lua_version}" --tree="%{buildroot}/usr/" \
|
|
make --deps-mode=none --no-manifest "%{mod_name}-%{rock_version}.rockspec"
|
|
|
|
# Seperate out documentation and licence
|
|
mv %{buildroot}/usr/lib/luarocks/rocks-%{lua_version}/%{mod_name}/%{rock_version}/doc/COPYING .
|
|
mkdir -p docs
|
|
mv %{buildroot}/usr/lib/luarocks/rocks-%{lua_version}/%{mod_name}/%{rock_version}/doc/* docs/
|
|
rmdir %{buildroot}/usr/lib/luarocks/rocks-%{lua_version}/%{mod_name}/%{rock_version}/doc
|
|
|
|
# Move pure lua modules to lua_noarchdir
|
|
mkdir -p %{buildroot}%{lua_noarchdir}/luarocks/rocks-%{lua_version}/%{mod_name}/%{rock_version}
|
|
mv %{buildroot}/usr/lib/luarocks/rocks-%{lua_version}/%{mod_name}/%{rock_version}/* \
|
|
%{buildroot}%{lua_noarchdir}/luarocks/rocks-%{lua_version}/%{mod_name}/%{rock_version}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc docs/*
|
|
%{lua_noarchdir}
|
|
|
|
%changelog
|