forked from pool/erlang-erlware_commons
Fix build for 17.0 OBS-URL: https://build.opensuse.org/request/show/237616 OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/erlang-erlware_commons?expand=0&rev=2
68 lines
2.1 KiB
RPMSpec
68 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package erlang-erlware_commons
|
|
#
|
|
# 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 erlware_commons
|
|
Name: erlang-%{app_name}
|
|
Version: 0.11.0+git20140524.c2d67e6
|
|
Release: 0
|
|
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
|
|
Summary: A project focused on all aspects of reusable Erlang components
|
|
License: MIT
|
|
Group: Development/Libraries/Other
|
|
Url: https://github.com/erlware/erlware_commons
|
|
Source: %{app_name}-%{version}.tar.bz2
|
|
Requires: erlang
|
|
BuildRequires: erlang
|
|
BuildRequires: erlang-neotoma
|
|
BuildRequires: erlang-proper
|
|
BuildRequires: erlang-rebar
|
|
BuildRequires: erlang-rebar_vsn_plugin
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Erlware Commons is an Erlware project focused on all aspects of reusable Erlang components.
|
|
|
|
%prep
|
|
%setup -q -n %{app_name}-%{version}
|
|
|
|
%build
|
|
make
|
|
make doc
|
|
|
|
%install
|
|
for dir in ebin include 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
|
|
make test
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc doc
|
|
%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
|
|
%{erlang_libdir}/%{app_name}-%{app_ver}/priv
|
|
|
|
%changelog
|