Files
erlang-xmlrpc/erlang-xmlrpc.spec

70 lines
2.4 KiB
RPMSpec
Raw Permalink Normal View History

#
# 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 xmlrpc
Name: erlang-%{app_name}
Version: 1.15+git1430940780.42e6e96
Release: 0
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
License: MIT
Summary: Erlang XMLRPC implementation with SSL, cookies, Authentication
Url: http://github.com/rds13/xmlrpc
Group: Development/Libraries/Other
Source: %{app_name}-%{version}.tar.bz2
Requires: erlang
BuildRequires: erlang
BuildRequires: erlang-rebar
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This is an HTTP 1.1 compliant XML-RPC library for Erlang. It is
designed to make it easy to write XML-RPC Erlang clients and/or
servers. The library is compliant with the XML-RPC specification
published by http://www.xmlrpc.org/.
This library is a hack over
http://ejabberd.jabber.ru/files/contributions/xmlrpc-1.13-ipr2.tgz
to add support for custom HTTP headers and https transport.
Custom HTTP headers allow to send cookies between client and server.
%prep
%setup -q -n %{app_name}-%{version}
%build
echo "%{app_ver}" > .rebar_vsn_obs
%rebar compile
%install
for dir in ebin include ; 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 examples/
%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
%dir %{erlang_libdir}/%{app_name}-%{app_ver}/include
%{erlang_libdir}/%{app_name}-%{app_ver}/include/*.hrl
%changelog