Files
erlang-eper/erlang-eper.spec

69 lines
2.1 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package erlang-eper
#
# Copyright (c) 2013 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/
#
Name: erlang-eper
Version: 0.0.0+git.1358630895.9c7be62
%define mod_ver %(echo "%{version}" | cut -d "+" -f1)
Release: 0
License: MIT
Summary: Erlang library for building lightweight HTTP servers
Url: http://tonyg.github.com/erlang-eper/
Group: Development/Libraries/Other
Source: eper-%{version}.tar.gz
BuildRequires: erlang-rebar
Requires: erlang
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
MochiWeb is an Erlang library for building lightweight HTTP servers.
%package devel
Summary: Erlang library for building lightweight HTTP servers
Group: Development/Libraries/Other
Requires: %{name} = %{version}
Provides: %{name}-src = %{version}
#TODO: Change back to '<' after next version update:
Obsoletes: %{name}-src <= %{version}
%description devel
MochiWeb is an Erlang library for building lightweight HTTP servers
%prep
%setup -n eper-%{version}
%build
%rebar compile escriptize
%install
for dir in ebin priv src ; do
install -d %{buildroot}%{erlang_libdir}/eper-%{mod_ver}/${dir}
cp -r ${dir}/* %{buildroot}%{erlang_libdir}/eper-%{mod_ver}/${dir}/
done
%files
%defattr(-,root,root)
%doc README COPYING
%dir %{erlang_libdir}/eper-%{mod_ver}
%{erlang_libdir}/eper-%{mod_ver}/ebin
%{erlang_libdir}/eper-%{mod_ver}/priv
%files devel
%defattr(-,root,root)
%{erlang_libdir}/eper-%{mod_ver}/src
%changelog