File erlang-lager.spec of Package erlang-lager
#
# spec file for package erlang-lager
#
# Copyright (c) 2023 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/
#
Name: erlang-lager
Version: 0
%define mod_ver %(echo "%{version}" | cut -d "+" -f1)
Release: 0
Summary: A logging framework for Erlang/OTP
License: Apache-2.0
Group: Development/Libraries/Other
URL: https://github.com/erlang-lager/lager
Source: lager-%{version}.tar.xz
BuildRequires: erlang-goldrush >= 0.1.9
%requires_eq erlang-goldrush
BuildRequires: erlang-rebar
Requires: erlang
%description
Lager (as in the beer) is a logging framework for Erlang. Its purpose is to
provide a more traditional way to perform logging in an erlang application that
plays nicely with traditional UNIX logging tools like logrotate and syslog.
%package devel
Summary: A logging framework for Erlang/OTP
Group: Development/Libraries/Other
Requires: %{name} = %{version}
Provides: %{name}-src = %{version}
Obsoletes: %{name}-src < %{version}
%description devel
Lager (as in the beer) is a logging framework for Erlang. Its purpose is to
provide a more traditional way to perform logging in an erlang application that
plays nicely with traditional UNIX logging tools like logrotate and syslog.
This package contains the sources for %{name}.
%prep
%setup -n lager-%{version}
%build
%rebar compile
%install
for dir in include ebin priv src ; do
install -d %{buildroot}%{erlang_libdir}/lager-%{mod_ver}/${dir}
cp -r ${dir}/* %{buildroot}%{erlang_libdir}/lager-%{mod_ver}/${dir}/
done
%check
%rebar ct
%files
%defattr(-,root,root)
%doc README.md LICENSE
%dir %{erlang_libdir}/lager-%{mod_ver}
%{erlang_libdir}/lager-%{mod_ver}/ebin
%{erlang_libdir}/lager-%{mod_ver}/priv
%files devel
%defattr(-,root,root)
%{erlang_libdir}/lager-%{mod_ver}/include
%{erlang_libdir}/lager-%{mod_ver}/src
%changelog