253 lines
6.3 KiB
RPMSpec
253 lines
6.3 KiB
RPMSpec
# conditionalize Ocaml support
|
|
%ifarch sparc64 s390 s390x
|
|
%bcond_with ocaml
|
|
%else
|
|
%bcond_without ocaml
|
|
%endif
|
|
|
|
Name: hivex
|
|
Version: 1.2.3
|
|
Release: 3%{?dist}
|
|
Summary: Read and write Windows Registry binary hive files
|
|
|
|
Group: Development/Libraries
|
|
License: LGPLv2
|
|
URL: http://libguestfs.org/
|
|
Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz
|
|
Patch0: %{name}-1.2.3-dirs.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: perl
|
|
BuildRequires: perl-Test-Simple
|
|
BuildRequires: perl-Test-Pod
|
|
BuildRequires: perl-Test-Pod-Coverage
|
|
BuildRequires: perl-ExtUtils-MakeMaker
|
|
BuildRequires: perl-IO-stringy
|
|
BuildRequires: perl-libintl
|
|
%if %{with ocaml}
|
|
BuildRequires: ocaml
|
|
BuildRequires: ocaml-findlib-devel
|
|
%endif
|
|
BuildRequires: readline-devel
|
|
BuildRequires: libxml2-devel
|
|
|
|
# This library used to be part of libguestfs. It won't install alongside
|
|
# the old version of libguestfs that included this library:
|
|
Conflicts: libguestfs <= 1:1.0.84
|
|
|
|
|
|
%description
|
|
Hive files are the undocumented binary blobs that Windows uses to
|
|
store the Windows Registry on disk. Hivex is a library that can read
|
|
and write to these files.
|
|
|
|
'hivexsh' is a shell you can use to interactively navigate a hive
|
|
binary file.
|
|
|
|
'hivexregedit' lets you export and merge to the textual regedit
|
|
format.
|
|
|
|
'hivexml' can be used to convert a hive file to a more useful XML
|
|
format.
|
|
|
|
In order to get access to the hive files themselves, you can copy them
|
|
from a Windows machine. They are usually found in
|
|
%%systemroot%%\system32\config. For virtual machines we recommend
|
|
using libguestfs or guestfish to copy out these files. libguestfs
|
|
also provides a useful high-level tool called 'virt-win-reg' (based on
|
|
hivex technology) which can be used to query specific registry keys in
|
|
an existing Windows VM.
|
|
|
|
For Perl bindings, see 'perl-hivex'.
|
|
|
|
For OCaml bindings, see 'ocaml-hivex-devel'.
|
|
|
|
|
|
%package devel
|
|
Summary: Development tools and libraries for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
|
|
|
|
%description devel
|
|
%{name}-devel contains development tools and libraries
|
|
for %{name}.
|
|
|
|
|
|
%package static
|
|
Summary: Statically linked library for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
%description static
|
|
%{name}-static contains the statically linked library
|
|
for %{name}.
|
|
|
|
|
|
%if %{with ocaml}
|
|
%package -n ocaml-%{name}
|
|
Summary: OCaml bindings for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
%description -n ocaml-%{name}
|
|
ocaml-%{name} contains OCaml bindings for %{name}.
|
|
|
|
This is for toplevel and scripting access only. To compile OCaml
|
|
programs which use %{name} you will also need ocaml-%{name}-devel.
|
|
|
|
|
|
%package -n ocaml-%{name}-devel
|
|
Summary: OCaml bindings for %{name}
|
|
Group: Development/Libraries
|
|
Requires: ocaml-%{name} = %{version}-%{release}
|
|
|
|
|
|
%description -n ocaml-%{name}-devel
|
|
ocaml-%{name}-devel contains development libraries
|
|
required to use the OCaml bindings for %{name}.
|
|
%endif
|
|
|
|
|
|
%package -n perl-%{name}
|
|
Summary: Perl bindings for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
|
|
%description -n perl-%{name}
|
|
perl-%{name} contains Perl bindings for %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1 -b .dirs
|
|
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
# Remove unwanted libtool *.la file:
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libhivex.la
|
|
|
|
# Remove unwanted Perl files:
|
|
find $RPM_BUILD_ROOT -name perllocal.pod -delete
|
|
find $RPM_BUILD_ROOT -name .packlist -delete
|
|
find $RPM_BUILD_ROOT -name '*.bs' -delete
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root,-)
|
|
%doc README LICENSE
|
|
%{_bindir}/hivexget
|
|
%{_bindir}/hivexml
|
|
%{_bindir}/hivexregedit
|
|
%{_bindir}/hivexsh
|
|
%{_libdir}/libhivex.so.*
|
|
%{_mandir}/man1/hivexget.1*
|
|
%{_mandir}/man1/hivexml.1*
|
|
%{_mandir}/man1/hivexregedit.1*
|
|
%{_mandir}/man1/hivexsh.1*
|
|
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE
|
|
%{_libdir}/libhivex.so
|
|
%{_mandir}/man3/hivex.3*
|
|
%{_includedir}/hivex.h
|
|
%{_libdir}/pkgconfig/hivex.pc
|
|
|
|
|
|
%files static
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE
|
|
%{_libdir}/libhivex.a
|
|
|
|
|
|
%if %{with ocaml}
|
|
%files -n ocaml-%{name}
|
|
%defattr(-,root,root,-)
|
|
%doc README
|
|
%{_libdir}/ocaml/hivex
|
|
%exclude %{_libdir}/ocaml/hivex/*.a
|
|
%exclude %{_libdir}/ocaml/hivex/*.cmxa
|
|
%exclude %{_libdir}/ocaml/hivex/*.cmx
|
|
%exclude %{_libdir}/ocaml/hivex/*.mli
|
|
%{_libdir}/ocaml/stublibs/*.so
|
|
%{_libdir}/ocaml/stublibs/*.so.owner
|
|
|
|
|
|
%files -n ocaml-%{name}-devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/ocaml/hivex/*.a
|
|
%{_libdir}/ocaml/hivex/*.cmxa
|
|
%{_libdir}/ocaml/hivex/*.cmx
|
|
%{_libdir}/ocaml/hivex/*.mli
|
|
%endif
|
|
|
|
|
|
%files -n perl-%{name}
|
|
%defattr(-,root,root,-)
|
|
%{perl_vendorarch}/*
|
|
%{_mandir}/man3/Win::Hivex.3pm*
|
|
%{_mandir}/man3/Win::Hivex::Regedit.3pm*
|
|
|
|
|
|
%changelog
|
|
* Fri Nov 19 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-3
|
|
- fix built with recent perl
|
|
|
|
* Tue Sep 7 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-2
|
|
- conditionalize ocaml support
|
|
|
|
* Fri Aug 27 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.3-1
|
|
- New upstream version 1.2.3.
|
|
|
|
* Wed Aug 25 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-3
|
|
- Create a hivex-static subpackage.
|
|
|
|
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2.2-2
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
* Wed Apr 28 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-1
|
|
- New upstream version 1.2.2.
|
|
|
|
* Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.1-1
|
|
- New upstream version 1.2.1.
|
|
- Includes new tool for exporting and merging in regedit format.
|
|
|
|
* Mon Mar 1 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.0-2
|
|
- New upstream version 1.2.0.
|
|
- This includes OCaml and Perl bindings, so add these as subpackages.
|
|
|
|
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-3
|
|
- Missing Epoch in conflicts version fixed.
|
|
|
|
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-2
|
|
- Add Conflicts libguestfs <= 1.0.84.
|
|
|
|
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-1
|
|
- Initial Fedora RPM.
|