File sync.spec of Package sync
%define bname sync
Name: %bname
Version: 0.1.3
Release: 2
Summary: Recompiles and reloads your Erlang code on-the-fly
License: MIT
Group: Development/Tools/Other
URL: https://github.com/rustyio/%bname
Source: %bname.tar.xz
Patch1: %bname-fix-doc.patch
BuildArch: noarch
Provides: erlang-%bname = %version-%release
BuildRequires: rpm-macros-erlang rpm-build-erlang
BuildRequires: erlang-kernel-devel
BuildRequires: rebar >= 2.6.1-7
%description
Sync is a developer utility. It recompiles and reloads your Erlang code
on-the-fly.
%package doc
Summary: %bname documentation
Group: Documentation/HTML
%description doc
Sync is a developer utility. It recompiles and reloads your Erlang code
on-the-fly. With Sync, you can code without friction.
This package contains documentation in HTML format.
%prep
%setup -q -n %bname
%patch1 -p1
%build
erl -noshell -eval '
{ok, L} = file:consult("rebar.config"),
file:write_file("%bname.rebar.config", [[io_lib:print(E), ".\n"] || E <- lists:keydelete(deps, 1, L)], [raw]),
init:stop().'
ERL_COMPILER_OPTIONS="[inline,verbose]" rebar %{?_smp_mflags} -C %bname.rebar.config compile -v
rebar %{?_smp_mflags} -C %bname.rebar.config doc -v
%install
install -d -m 0755 %buildroot%_otplibdir/%bname-%version/ebin
install -p -m 0644 ebin/* %buildroot%_otplibdir/%bname-%version/ebin/
install -d -m 0755 %buildroot%_otplibdir/%bname-%version/doc
install -p -m 0644 doc/*.{css,html,png} %buildroot%_otplibdir/%bname-%version/doc/
install -d -m 0755 %buildroot%_docdir/%name/examples
install -p -m 0644 README.* %buildroot%_docdir/%name/
ln -sf %_otplibdir/%bname-%version/doc %buildroot%_docdir/%name/html
%files
%defattr(-,root,root)
%_otplibdir/*
%exclude %_otplibdir/%bname-*/doc
%files doc
%defattr(-,root,root)
%doc %_docdir/%name
%doc %dir %_otplibdir/%bname-*
%doc %_otplibdir/%bname-*/doc
%changelog
* Thu Jan 17 2019 Led <ledest@gmail.com> 0.1.3-2
- update BuildRequires
* Tue May 29 2018 Led <ledest@gmail.com> 0.1.3-1
- initial build
- git 44a1e0d