File luerl.spec of Package luerl
%define bname luerl
Name: %bname
Version: 0.3
Release: 5
Summary: An implementation of Lua in Erlang
License: Apache-2.0
Group: Development/Tools/Other
URL: https://github.com/processone/%bname
Source: %bname-%version.tar.xz
#Patch0: %bname-%version-git.patch
Patch1: %bname-0.3-fix-build-docs.patch
Patch2: %bname-0.3-else.patch
BuildArch: noarch
Provides: erlang-%bname = %version-%release
BuildRequires: rpm-macros-erlang rpm-build-erlang
BuildRequires: erl_interface erlang-parsetools-devel
# doc
BuildRequires: erlang-edoc
%description
Luerl is an implementation of Lua 5.2 written solely in pure Erlang.
%package doc
Summary: Documentation of %bname
Group: Documentation/HTML
Provides: erlang-%bname-doc = %version-%release
Conflicts: %name < 0.3-3
%description doc
Luerl is an implementation of Lua 5.2 written solely in pure Erlang.
This package contains documantation for %bname.
%prep
%setup -q -n %bname-%version
#patch -p1 -P0
%patch -p1 -P1 -P2
%build
make %{?_smp_mflags} ERLCFLAGS="+inline"
%__erlang -noshell -eval "edoc:application('.', [preprocess])." -s init stop
%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
ln -sf %_otplibdir/%name-%version/doc %buildroot%_docdir/%name/html
install -p -m 0644 *.md %buildroot%_docdir/%name/
%check
ERL_COMPILER_OPTIONS="[inline,verbose]" %__erlang -noshell -eval 'eunit:test({dir, ".eunit"}, []).' -s init stop
%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
* Mon Nov 18 2024 Led <ledest@gmail.com> 0.3-5
- fix patch applying
* Mon Nov 18 2024 Led <ledest@gmail.com> 0.3-4
- fix build doc
* Sat Jun 11 2022 Led <ledest@gmail.com> 0.3-3
- add patches:
+ luerl-0.3-else.patch
- move docs to separate subpackage
* Sun Aug 20 2017 Led <ledest@gmail.com> 0.3-2
- fix Summary
* Mon Jan 02 2017 Led <ledest@gmail.com> 0.3-1
- initial build