Accepting request 226482 from home:matwey:branches:devel:languages:erlang

fix erlang-fastlog build, add deps

OBS-URL: https://build.opensuse.org/request/show/226482
OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang/erlang-appstart?expand=0&rev=1
This commit is contained in:
Sascha Peilicke
2014-03-18 09:07:23 +00:00
committed by Git OBS Bridge
commit ce713b8df9
6 changed files with 105 additions and 0 deletions

59
erlang-appstart.spec Normal file
View File

@@ -0,0 +1,59 @@
#
# spec file for package erlang-appstart
#
# 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 appstart
Name: erlang-%{app_name}
Version: 0.0.4+git20121029.b887014
Release: 0
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
Summary: An Erlang/OTP Application Startup Utility
License: BSD-3-Clause
Group: Development/Libraries/Other
Url: https://github.com/hyperthunk/appstart
Source: %{app_name}-%{version}.tar.bz2
BuildRequires: erlang
BuildRequires: erlang-rebar
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This small library aims to help with OTP application startup and shutdown.
%prep
%setup -q -n %{app_name}-%{version}
%build
%rebar compile
%install
for dir in ebin ; 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 README.md
%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
%changelog