2019-03-05 00:34:36 +00:00
|
|
|
#
|
|
|
|
# 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 mqtree
|
|
|
|
|
|
|
|
Name: erlang-%{app_name}
|
|
|
|
Version: 0
|
|
|
|
Release: 0
|
|
|
|
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
|
|
|
|
License: GPL-2.0
|
|
|
|
Summary: Index tree for MQTT topic filters
|
|
|
|
Url: http://github.com/processone/zlib
|
|
|
|
Group: Development/Libraries/Other
|
|
|
|
Source: %{app_name}-%{version}.tar.xz
|
|
|
|
Requires: erlang
|
2020-08-25 20:08:58 +00:00
|
|
|
BuildRequires: pkgconfig(openssl)
|
2019-03-05 00:34:36 +00:00
|
|
|
BuildRequires: erlang
|
|
|
|
BuildRequires: erlang-rebar
|
2022-06-07 14:11:39 +00:00
|
|
|
BuildRequires: erlang-p1_utils-devel >= 1.0.25
|
2020-08-25 20:08:58 +00:00
|
|
|
%requires_eq erlang-p1_utils
|
2019-03-05 00:34:36 +00:00
|
|
|
Provides: %{name}-devel = %{version}-%{release}
|
|
|
|
%description
|
|
|
|
mqtree is an Erlang NIF implementation of N-ary tree to keep MQTT
|
|
|
|
topic filters for efficient matching.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{app_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
2021-11-29 20:16:27 +00:00
|
|
|
%configure
|
2020-06-07 11:48:50 +00:00
|
|
|
%rebar compile skip_deps=true
|
2019-03-05 00:34:36 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
for dir in ebin priv ; 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 LICENSE README.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
|
|
|
|
%{erlang_libdir}/%{app_name}-%{app_ver}/priv
|
|
|
|
|
|
|
|
%changelog
|