2014-07-07 14:31:59 +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 p1_mysql
|
|
|
|
|
|
|
|
Name: erlang-%{app_name}
|
2019-03-05 00:09:02 +00:00
|
|
|
Version: 0
|
2014-07-07 14:31:59 +00:00
|
|
|
Release: 0
|
|
|
|
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
|
|
|
|
License: BSD-3-Clause
|
|
|
|
Summary: MySQL bindings for ejabberd
|
2017-07-09 23:59:56 +00:00
|
|
|
Url: http://github.com/processone/p1_mysql
|
2014-07-07 14:31:59 +00:00
|
|
|
Group: Development/Libraries/Other
|
2017-07-09 23:59:56 +00:00
|
|
|
Source: %{app_name}-%{version}.tar.xz
|
2014-07-07 14:31:59 +00:00
|
|
|
Requires: erlang
|
|
|
|
BuildRequires: erlang
|
|
|
|
BuildRequires: erlang-rebar
|
|
|
|
BuildRequires: mysql-devel
|
|
|
|
|
|
|
|
%description
|
|
|
|
P1 mysql implements MySQL bindings for ejabberd
|
|
|
|
|
2017-07-10 02:02:41 +00:00
|
|
|
%package devel
|
|
|
|
Summary: MySQL bindings for ejabberd
|
|
|
|
Group: Development/Libraries/Other
|
|
|
|
Requires: %{name} = %{version}
|
|
|
|
Provides: %{name}-src = %{version}
|
|
|
|
Obsoletes: %{name}-src < %{version}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
P1 mysql implements MySQL bindings for ejabberd
|
|
|
|
|
|
|
|
This package contains the sources for %{name}.
|
|
|
|
|
2014-07-07 14:31:59 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n %{app_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%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 COPYING
|
|
|
|
%dir %{erlang_libdir}/%{app_name}-%{app_ver}
|
2017-07-10 02:02:41 +00:00
|
|
|
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{erlang_libdir}/%{app_name}-%{app_ver}/include/
|
2014-07-07 14:31:59 +00:00
|
|
|
|
|
|
|
%changelog
|