OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/erlang-stringprep?expand=0&rev=23
71 lines
2.3 KiB
RPMSpec
71 lines
2.3 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 stringprep
|
|
|
|
Name: erlang-%{app_name}
|
|
Version: 0
|
|
Release: 0
|
|
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
|
|
License: GPL-2.0 and TCL
|
|
Summary: Stringprep implementation for ejabberd
|
|
Url: http://github.com/processone/stringprep
|
|
Group: Development/Libraries/Other
|
|
Source: %{app_name}-%{version}.tar.xz
|
|
Requires: erlang
|
|
BuildRequires: erlang
|
|
BuildRequires: erlang-rebar
|
|
BuildRequires: erlang-p1_utils >= 1.0.25
|
|
BuildRequires: gcc-c++
|
|
%requires_eq erlang-p1_utils
|
|
Provides: erlang-p1_stringprep = %{version}-%{release}
|
|
Obsoletes: erlang-p1_stringprep < %{version}
|
|
Provides: %{name}-devel = %{version}-%{release}
|
|
%description
|
|
Stringprep implementation for ejabberd
|
|
|
|
tools/uni_parse.tcl and tools/uni_parse2.tcl are based on tools/uniParse.tcl
|
|
from Tcl distribution, and they generate c_src/uni_data.c and
|
|
c_src/uni_norm.c. Those files are distributed under BSD-style Tcl/Tk license
|
|
(see LICENSE.TCL).
|
|
|
|
The rest of the code is under GPL version 2 or above.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{app_name}-%{version}
|
|
|
|
%build
|
|
%rebar compile
|
|
|
|
%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* CHANGELOG.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
|