Olaf Hering
1edf6dea48
OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-pcre?expand=0&rev=31
119 lines
3.3 KiB
RPMSpec
119 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package ocaml-pcre
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2011 Andrew Psaltis <ampsaltis at gmail.com>
|
|
#
|
|
# 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-pcre
|
|
Version: 7.2.3
|
|
%{ocaml_preserve_bytecode}
|
|
Release: 0
|
|
Summary: Perl compatibility regular expressions (PCRE) for OCaml
|
|
License: LGPL-2.0
|
|
Group: Development/Libraries/Other
|
|
|
|
Url: http://mmottl.github.io/pcre-ocaml/
|
|
# https://github.com/mmottl/pcre-ocaml/releases/download/v%{version}/pcre-ocaml-%{version}.tar.gz
|
|
Source0: pcre-ocaml-%{version}.tar.xz
|
|
Patch0: ocaml-pcre-warnings.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
# ocaml autodep start for pkg: ocaml-pcre
|
|
# hardcoded rpm dependency for pre 12.1 to compensate for lack of ocaml() provides/requires
|
|
%if 0%{?suse_version} < 1210
|
|
Requires: ocaml-runtime
|
|
%endif
|
|
# ocaml autodep end for pkg: ocaml-pcre
|
|
|
|
BuildRequires: gawk
|
|
BuildRequires: ocaml >= 3.10.2
|
|
BuildRequires: ocaml-findlib-devel
|
|
BuildRequires: ocaml-oasis-devel
|
|
BuildRequires: ocaml-ocamldoc
|
|
BuildRequires: ocaml-rpm-macros >= 4.02.1
|
|
BuildRequires: pcre-devel
|
|
|
|
%description
|
|
Perl compatibile regular expressions (PCRE) for OCaml.
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries/Other
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pcre-devel
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and signature files for
|
|
developing applications that use %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q -n pcre-ocaml-%{version}
|
|
%patch0 -p1
|
|
|
|
%build
|
|
oasis -debug setup-clean
|
|
oasis -debug setup -setup-update none
|
|
ls -AlRt .
|
|
make setup.data CONFIGUREFLAGS="--destdir $RPM_BUILD_ROOT --docdir %{_defaultdocdir}/%{name}"
|
|
make all
|
|
|
|
%install
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
mkdir -p $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
|
|
make NATIVE=true install
|
|
#
|
|
mkdir -vp %{buildroot}/etc/ld.so.conf.d/
|
|
tee %{buildroot}/etc/ld.so.conf.d/%{name}.conf <<_EOF_
|
|
%{_libdir}/ocaml/stublibs
|
|
_EOF_
|
|
#
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING.txt README.md
|
|
/etc/ld.so.conf.d/*.conf
|
|
%dir %{_libdir}/ocaml
|
|
%dir %{_libdir}/ocaml/*
|
|
%if %{ocaml_native_compiler}
|
|
%{_libdir}/ocaml/*/*.cmxs
|
|
%endif
|
|
%{_libdir}/ocaml/*/*.so
|
|
%{_libdir}/ocaml/*/*.so.owner
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%dir %{_libdir}/ocaml
|
|
%dir %{_libdir}/ocaml/*
|
|
%{_libdir}/ocaml/*/*.a
|
|
%if %{ocaml_native_compiler}
|
|
%{_libdir}/ocaml/*/*.cmx
|
|
%{_libdir}/ocaml/*/*.cmxa
|
|
%endif
|
|
%{_libdir}/ocaml/*/*.annot
|
|
%{_libdir}/ocaml/*/*.cma
|
|
%{_libdir}/ocaml/*/*.cmi
|
|
%{_libdir}/ocaml/*/*.cmt
|
|
%{_libdir}/ocaml/*/*.cmti
|
|
%{_libdir}/ocaml/*/*.mli
|
|
%{_libdir}/ocaml/*/META
|
|
|
|
%changelog
|