# # spec file for package erlang-hamcrest # # 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 hamcrest Name: erlang-%{app_name} Version: 0.1.0+git20131224.8a90a12 Release: 0 %define app_ver %(echo "%{version}" | cut -d "+" -f1) Summary: Erlang port of Hamcrest License: BSD-3-Clause Group: Development/Libraries/Other Url: https://github.com/hyperthunk/hamcrest-erlang Source: hamcrest-erlang-%{version}.tar.bz2 BuildRequires: erlang BuildRequires: erlang-rebar BuildRoot: %{_tmppath}/%{name}-%{version}-build %description Hamcrest is a framework for writing matcher objects allowing 'match' rules to be defined declaratively. There are a number of situations where matchers are invaluable, such as UI validation, or data filtering, but it is in the area of writing flexible tests that matchers are most commonly used. %prep %setup -q -n hamcrest-erlang-%{version} %build %rebar compile xref %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 %files %defattr(-,root,root) %doc README.markdown NOTES %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