db97f88646
This change is the first step towards updating the default rpm/deb packages to be FHS compliant. It accomplishes this by passing the following options to ./configure to ensure the zfs build products are installed in FHS compliant locations. ./configure --prefix=/ --bindir=/lib/udev \ --libexecdir=/usr/libexec --datadir=/usr/share The core zfs utilities (zfs, zpool, zdb) are now be installed in /sbin, the core libraries in /lib, and the udev helpers (zpool_id, zvol_id) are in /lib/udev with the other udev helpers. The remaining files in the zfs package remain in their previous locations under /usr.
105 lines
2.6 KiB
RPMSpec
105 lines
2.6 KiB
RPMSpec
%define name @PACKAGE@
|
|
%define version @VERSION@
|
|
%define release @ZFS_META_RELEASE@
|
|
%define debug_package %{nil}
|
|
%define _prefix /
|
|
%define _bindir /lib/udev
|
|
%define _libexecdir /usr/libexec
|
|
%define _datadir /usr/share
|
|
|
|
Summary: ZFS Library and Utils
|
|
Group: Utilities/System
|
|
Name: %{name}
|
|
Version: %{version}
|
|
Release: %{release}
|
|
License: CDDL
|
|
URL: git://eris.llnl.gov/zfs.git
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id} -un)
|
|
Source: %{name}-%{version}.tar.gz
|
|
Requires: zlib e2fsprogs
|
|
BuildRequires: zlib-devel e2fsprogs-devel
|
|
|
|
%description
|
|
The %{name} package contains the libzfs library and support utilities
|
|
for the zfs file system.
|
|
|
|
%package devel
|
|
Summary: ZFS File System User Headers
|
|
Group: Development/Libraries
|
|
%if %{defined ch5} || %{defined el6} || %{defined fc12}
|
|
Requires: zlib libuuid libblkid
|
|
BuildRequires: zlib-devel libuuid-devel libblkid-devel
|
|
%else
|
|
Requires: zlib e2fsprogs
|
|
BuildRequires: zlib-devel e2fsprogs-devel
|
|
%endif
|
|
|
|
%description devel
|
|
The %{name}-devel package contains the header files needed for building
|
|
additional applications against the %{name} libraries.
|
|
|
|
%package test
|
|
Summary: ZFS File System Test Infrastructure
|
|
Group: Utilities/System
|
|
Requires: parted lsscsi
|
|
|
|
%description test
|
|
The %{name}-test package contains a test infrastructure for zpios which
|
|
can be used to simplfy the benchmarking of various hardware and software
|
|
configurations. The test infrastructure additionally integrates with
|
|
various system profiling tools to facilitate an in depth analysis.
|
|
|
|
%package dracut
|
|
Summary: ZFS Dracut Module
|
|
Group: System Environment/Base
|
|
Requires: dracut
|
|
|
|
%description dracut
|
|
The %{name}-dracut package allows dracut to construct initramfs images
|
|
which are ZFS aware.
|
|
|
|
%prep
|
|
%setup
|
|
%build
|
|
%configure --with-config=user --without-blkid
|
|
make
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%doc AUTHORS ChangeLog COPYING COPYRIGHT DISCLAIMER
|
|
%doc OPENSOLARIS.LICENSE README.markdown ZFS.RELEASE
|
|
%{_sbindir}/*
|
|
%{_bindir}/*
|
|
%{_libdir}/*
|
|
%{_mandir}/man8/*
|
|
%{_sysconfdir}/init.d/*
|
|
%{_sysconfdir}/udev/rules.d/*
|
|
%{_sysconfdir}/zfs/*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/*
|
|
|
|
%files test
|
|
%defattr(-,root,root)
|
|
%{_libexecdir}/@PACKAGE@/*
|
|
|
|
%files dracut
|
|
%defattr(-,root,root)
|
|
%{_datadir}/dracut/*
|
|
|
|
%post
|
|
[ -x /sbin/chkconfig ] && /sbin/chkconfig --add zfs
|
|
exit 0
|
|
|
|
%preun
|
|
[ -x /sbin/chkconfig ] && /sbin/chkconfig --del zfs
|
|
exit 0
|