ocaml-ounit/ocaml-ounit.spec

75 lines
2.0 KiB
RPMSpec

#
# spec file for package ocaml-ounit
#
# Copyright (c) 2017 SUSE LINUX 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: ocaml-ounit
Version: 2.1.2
Release: 0
%{?ocaml_preserve_bytecode}
Summary: Ocaml OUnit test framework
License: MIT
Group: Development/Languages/OCaml
Url: https://github.com/gildor478/ounit
Source0: %{name}-%{version}.tar.xz
BuildRequires: ocaml
BuildRequires: ocaml-dune
BuildRequires: ocaml-rpm-macros
BuildRequires: ocamlfind(bytes)
BuildRequires: ocamlfind(lwt)
BuildRequires: ocamlfind(lwt.unix)
BuildRequires: ocamlfind(stdlib-shims)
BuildRequires: ocamlfind(str)
BuildRequires: ocamlfind(threads)
BuildRequires: ocamlfind(unix)
%description
OUnit is a unit test framework for OCaml. It allows one to easily
create unit-tests for OCaml code. It is based on HUnit, a unit testing
framework for Haskell. It is similar to JUnit, and other xUnit testing
frameworks.
%package devel
Summary: Development files for %{name}
Group: Development/Languages/OCaml
Requires: %{name} = %{version}
%description devel
Development files needed for application based on %{name}.
%prep
%autosetup -p1
%build
%ocaml_dune_setup
%ocaml_dune_build
%install
%ocaml_dune_install
%ocaml_create_file_list
%check
%ocaml_dune_test
%files -f %{name}.files
%license LICENSE.txt
%doc README.md
%files devel -f %{name}.files.devel
%changelog