2014-09-25 12:43:42 +02:00
|
|
|
#
|
|
|
|
# spec file for package ocaml-ounit
|
|
|
|
#
|
|
|
|
# Copyright (c) 2014 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2014-10-23 13:34:51 +02:00
|
|
|
%define distname ounit
|
|
|
|
%{ocaml_preserve_bytecode}
|
2014-09-25 12:43:42 +02:00
|
|
|
Name: ocaml-%{distname}
|
|
|
|
Version: 2.0.0
|
|
|
|
Release: 0
|
|
|
|
Summary: Ocaml OUnit test framework
|
2015-01-22 08:17:08 +01:00
|
|
|
License: MIT
|
2014-09-25 12:43:42 +02:00
|
|
|
Group: Development/Libraries/Other
|
|
|
|
Url: http://ounit.forge.ocamlcore.org/
|
|
|
|
Source0: %{distname}-%{version}.tar.gz
|
2014-10-23 13:34:51 +02:00
|
|
|
BuildRequires: ocaml
|
|
|
|
BuildRequires: ocaml-findlib
|
2016-05-19 07:41:53 +02:00
|
|
|
BuildRequires: ocaml-ocamlbuild
|
2014-10-23 13:34:51 +02:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: ocaml-rpm-macros >= 4.02.1
|
2014-09-25 12:43:42 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2015-11-10 11:34:32 +01:00
|
|
|
# ocaml autodep start for pkg: ocaml-ounit
|
|
|
|
# hardcoded rpm dependency for pre 12.1 to compensate for lack of ocaml() provides/requires
|
|
|
|
%if 0%{?suse_version} < 1210
|
2015-11-10 14:32:43 +01:00
|
|
|
Requires: ocaml-runtime
|
2015-11-10 11:34:32 +01:00
|
|
|
%endif
|
|
|
|
# ocaml autodep end for pkg: ocaml-ounit
|
2014-09-25 12:43:42 +02:00
|
|
|
|
|
|
|
%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
|
2014-10-23 13:34:51 +02:00
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries/Other
|
|
|
|
Requires: %{name} = %{version}
|
2014-09-25 12:43:42 +02:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development files needed for application based on %{name}.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{distname}-%{version}
|
|
|
|
ocaml setup.ml -configure \
|
|
|
|
--bindir '%{_bindir}' \
|
|
|
|
--mandir '%{_mandir}' \
|
|
|
|
--destdir '%{buildroot}' \
|
|
|
|
--datarootdir '%{_datadir}' \
|
|
|
|
--libdir '%{_libdir}' \
|
|
|
|
--libexecdir '%{_libexecdir}' \
|
|
|
|
--localstatedir '%{_localstatedir}' \
|
|
|
|
--sbindir '%{_sbindir}' \
|
|
|
|
--prefix '%{_prefix}' \
|
|
|
|
--sysconfdir '%{_sysconfdir}' \
|
|
|
|
--exec-prefix '%{_exec_prefix}' \
|
|
|
|
--sharedstatedir '%{_sharedstatedir}'
|
|
|
|
|
|
|
|
%build
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
export OCAMLFIND_DESTDIR=%{buildroot}%{_libdir}/ocaml
|
|
|
|
test -d "$OCAMLFIND_DESTDIR" || mkdir -p "$OCAMLFIND_DESTDIR"
|
|
|
|
make install %{?_smp_mflags}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2015-01-22 08:17:08 +01:00
|
|
|
%doc LICENSE.txt
|
2014-09-25 12:43:42 +02:00
|
|
|
%{_libdir}/ocaml/oUnit
|
|
|
|
%exclude %{_libdir}/ocaml/oUnit/*.ml
|
|
|
|
%exclude %{_libdir}/ocaml/oUnit/*.mli
|
2014-10-23 13:34:51 +02:00
|
|
|
%if %{ocaml_native_compiler}
|
|
|
|
%exclude %{_libdir}/ocaml/oUnit/*.a
|
2014-09-25 12:43:42 +02:00
|
|
|
%exclude %{_libdir}/ocaml/oUnit/*.cmx
|
|
|
|
%exclude %{_libdir}/ocaml/oUnit/*.cmxa
|
2014-10-23 13:34:51 +02:00
|
|
|
%endif
|
2014-09-25 12:43:42 +02:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/ocaml/oUnit/*.ml
|
|
|
|
%{_libdir}/ocaml/oUnit/*.mli
|
2014-10-23 13:34:51 +02:00
|
|
|
%if %{ocaml_native_compiler}
|
|
|
|
%{_libdir}/ocaml/oUnit/*.a
|
2014-09-25 12:43:42 +02:00
|
|
|
%{_libdir}/ocaml/oUnit/*.cmx
|
|
|
|
%{_libdir}/ocaml/oUnit/*.cmxa
|
2014-10-23 13:34:51 +02:00
|
|
|
%endif
|
2014-09-25 12:43:42 +02:00
|
|
|
|
|
|
|
%changelog
|