File erlang-merl.spec of Package erlang-merl
#
# spec file for package erlang-merl
#
# 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 merl
Name: erlang-%{app_name}
Version: 0.9+git20140223.4f02079
Release: 0
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
Summary: Metaprogramming in Erlang
License: Apache-2.0
Group: Development/Libraries/Other
Url: https://github.com/richcarl/merl
Source: %{app_name}-%{version}.tar.bz2
Patch0: 0001-Add-merl.app-file.patch
Patch1: 0007-Add-coding-latin-1-for-compile-on-erlang-17.0.patch
Requires: erlang
BuildRequires: erlang
BuildRequires: erlang-rebar
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Merl is a more user friendly interface to the erl_syntax module in the standard library syntax_tools application, making it easy both to build new ASTs (abstract syntax trees) from scratch and to match and decompose existing ASTs.
%prep
%setup -q -n %{app_name}-%{version}
%patch0 -p1
%patch1 -p1
%build
make clean
make all
make docs
%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 README.md LICENSE 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
%{erlang_libdir}/%{app_name}-%{app_ver}/priv
%changelog