diff --git a/.cvsignore b/.cvsignore index e69de29..ff672da 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1,2 @@ +camlidl-1.05.doc.pdf +camlidl-1.05.tar.gz diff --git a/ocaml-camlidl.spec b/ocaml-camlidl.spec new file mode 100644 index 0000000..04acf6b --- /dev/null +++ b/ocaml-camlidl.spec @@ -0,0 +1,109 @@ +%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0) +%define debug_package %{nil} + +Name: ocaml-camlidl +Version: 1.05 +Release: 3%{?dist} +Summary: Stub code generator and COM binding for Objective Caml + +Group: Development/Libraries +License: QPL and LGPLv2 with exceptions +URL: http://caml.inria.fr/pub/old_caml_site/camlidl/ +Source0: http://caml.inria.fr/pub/old_caml_site/distrib/bazar-ocaml/camlidl-%{version}.tar.gz +Source1: http://caml.inria.fr/pub/old_caml_site/distrib/bazar-ocaml/camlidl-%{version}.doc.pdf +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: ocaml +BuildRequires: ocaml-ocamldoc + +%define _use_internal_dependency_generator 0 +%define __find_requires /usr/lib/rpm/ocaml-find-requires.sh +%define __find_provides /usr/lib/rpm/ocaml-find-provides.sh + +%description +CamlIDL is a stub code generator and COM binding for Objective Caml. + +CamlIDL comprises two parts: + +* A stub code generator that generates the C stub code required for + the Caml/C interface, based on an MIDL specification. (MIDL stands + for Microsoft's Interface Description Language; it looks like C + header files with some extra annotations, plus a notion of object + interfaces that look like C++ classes without inheritance.) + +* A (currently small) library of functions and tools to import COM + components in Caml applications, and export Caml code as COM + components. + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + + +%description devel +The %{name}-devel package contains libraries and signature files for +developing applications that use %{name}. + + +%prep +%setup -q -n camlidl-%{version} +sed -e 's|^OCAMLLIB=.*|OCAMLLIB=%{_libdir}/ocaml|' \ + -e 's|^BINDIR=.*|BINDIR=%{_bindir}|' \ + < config/Makefile.unix \ + > config/Makefile +cp %{SOURCE1} . + + +%build +make all + + +%install +rm -rf $RPM_BUILD_ROOT + +mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml +mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml/caml +mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml/stublibs +mkdir -p $RPM_BUILD_ROOT/%{_bindir} + +make OCAMLLIB=$RPM_BUILD_ROOT/%{_libdir}/ocaml \ + BINDIR=$RPM_BUILD_ROOT/%{_bindir} \ + install + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc LICENSE +%{_libdir}/ocaml/*.* +%if %opt +%exclude %{_libdir}/ocaml/*.a +%exclude %{_libdir}/ocaml/*.cmxa +%endif +%{_bindir}/camlidl + + +%files devel +%defattr(-,root,root,-) +%doc LICENSE README Changes camlidl-%{version}.doc.pdf +%if %opt +%{_libdir}/ocaml/*.a +%{_libdir}/ocaml/*.cmxa +%endif +%{_libdir}/ocaml/caml/*.h + + +%changelog +* Wed Mar 5 2008 Richard W.M. Jones - 1.05-3 +- Removed -doc subpackage and placed documentation in -devel. + +* Tue Mar 4 2008 Richard W.M. Jones - 1.05-2 +- Rebuild for ppc64. + +* Wed Feb 20 2008 Richard W.M. Jones - 1.05-1 +- Initial RPM release. diff --git a/sources b/sources index e69de29..97e8d22 100644 --- a/sources +++ b/sources @@ -0,0 +1,2 @@ +38cfda1efdab331acdb980d204e60268 camlidl-1.05.doc.pdf +4cfb863bc3cbdc1af2502042c45cc675 camlidl-1.05.tar.gz