Files
erlang-jose/erlang-jose.spec

73 lines
2.1 KiB
RPMSpec

#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%define app_name jose
Name: erlang-%{app_name}
%if %{pkg_vcmp erlang >= 24}
Version: 1.11.10
%else
%global old_erlang 1
Version: 1.11.1
%endif
Release: 0
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
License: MPL-2.0
Summary: JSON Object Signing and Encryption (JOSE) for Erlang and Elixir
Url: https://github.com/potatosalad/erlang-jose
Group: Development/Libraries/Other
Source: %{name}-%{version}.tar.zst
Patch1: 15.x-allow-newer-base64url.patch
Requires: erlang
BuildRequires: erlang
BuildRequires: erlang-rebar
BuildRequires: erlang-base64url
%requires_ge erlang-base64url
Provides: %{name}-devel = %{version}-%{release}
BuildRequires: zstd
%description
JSON Object Signing and Encryption (JOSE) for Erlang and Elixir.
%prep
%setup -q -n %{name}-%{version}
%if 0%{?old_erlang}
%patch -p1 -P 1
%endif
%build
perl -p -i -e 's|0\.0\.1|1.0.1|g' rebar.lock
%rebar compile
%install
for dir in ebin ; do
mkdir -p %{buildroot}%{erlang_libdir}/%{app_name}-%{app_ver}/${dir}
cp -r ${dir}/* %{buildroot}%{erlang_libdir}/%{app_name}-%{app_ver}/${dir}/
done
%check
#rebar eunit
%files
%defattr(-,root,root)
%doc *md
%license LICENSE.md
%dir %{erlang_libdir}/%{app_name}-%{app_ver}
%dir %{erlang_libdir}/%{app_name}-%{app_ver}/ebin
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/%{app_name}.app
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/*.beam
%changelog