File elixir-stream_data.spec of Package elixir-stream_data
#
# spec file
#
# Copyright (c) 2023 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define app_name stream_data
Name: elixir-%{app_name}
Version: 0.6.0
Release: 0
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
Summary: Data generation and property-based testing for Elixir
License: Apache-2.0
Group: Development/Libraries/Other
URL: https://github.com/whatyouhide/stream_data
Source: %{app_name}-%{version}.tar.xz
Requires: elixir
BuildRequires: elixir
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
StreamData is an Elixir library for data generation and property-based testing.
%prep
%setup -q -n %{app_name}-%{version}
%build
export LANG=en_US.UTF-8
export MIX_ENV=prod
%{mix_compile}
%install
for dir in ebin ; do
mkdir -p %{buildroot}%{elixir_libdir}/%{app_name}/${dir}
cp -r _build/prod/lib/%{app_name}/${dir}/* %{buildroot}%{elixir_libdir}/%{app_name}/${dir}/
done
%files
%defattr(-,root,root)
%doc README.md CHANGELOG.md
%dir %{elixir_libdir}/%{app_name}
%dir %{elixir_libdir}/%{app_name}/ebin
%{elixir_libdir}/%{app_name}/ebin/%{app_name}.app
%{elixir_libdir}/%{app_name}/ebin/*.beam
%changelog