2010-08-26 18:22:58 +00:00
|
|
|
%define name @PACKAGE@
|
|
|
|
%define version @VERSION@
|
|
|
|
%define release @ZFS_META_RELEASE@
|
|
|
|
%define debug_package %{nil}
|
2011-06-17 18:47:45 +00:00
|
|
|
%define _prefix /
|
|
|
|
%define _libexecdir /usr/libexec
|
|
|
|
%define _datadir /usr/share
|
2011-09-12 18:42:33 +00:00
|
|
|
%define _includedir /usr/include
|
2011-08-05 19:22:58 +00:00
|
|
|
%define _udevdir /lib/udev
|
2010-08-26 18:22:58 +00:00
|
|
|
|
|
|
|
Summary: ZFS Library and Utils
|
|
|
|
Group: Utilities/System
|
|
|
|
Name: %{name}
|
|
|
|
Version: %{version}
|
2011-10-19 18:43:11 +00:00
|
|
|
Release: %{release}%{?dist}
|
2011-10-17 18:43:55 +00:00
|
|
|
License: @ZFS_META_LICENSE@
|
2011-08-25 22:09:24 +00:00
|
|
|
URL: git://github.com/zfsonlinux/zfs.git
|
2010-08-26 18:22:58 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id} -un)
|
|
|
|
Source: %{name}-%{version}.tar.gz
|
2012-01-18 00:20:43 +00:00
|
|
|
Requires: zfs-modules spl zlib e2fsprogs
|
2010-08-26 18:22:58 +00:00
|
|
|
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}
|
2012-01-18 00:20:43 +00:00
|
|
|
Requires: zfs zlib libuuid libblkid
|
2010-08-26 18:22:58 +00:00
|
|
|
BuildRequires: zlib-devel libuuid-devel libblkid-devel
|
|
|
|
%else
|
2012-01-18 00:20:43 +00:00
|
|
|
Requires: zfs zlib e2fsprogs
|
2010-08-26 18:22:58 +00:00
|
|
|
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
|
2012-04-30 20:31:05 +00:00
|
|
|
Requires: zfs parted lsscsi mdadm bc
|
2010-08-26 18:22:58 +00:00
|
|
|
|
|
|
|
%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.
|
|
|
|
|
2011-03-17 22:18:13 +00:00
|
|
|
%package dracut
|
|
|
|
Summary: ZFS Dracut Module
|
|
|
|
Group: System Environment/Base
|
2012-01-18 00:20:43 +00:00
|
|
|
Requires: zfs dracut
|
2011-03-17 22:18:13 +00:00
|
|
|
|
|
|
|
%description dracut
|
|
|
|
The %{name}-dracut package allows dracut to construct initramfs images
|
|
|
|
which are ZFS aware.
|
|
|
|
|
2010-08-26 18:22:58 +00:00
|
|
|
%prep
|
|
|
|
%setup
|
|
|
|
%build
|
2011-08-05 19:22:58 +00:00
|
|
|
%configure --with-config=user --without-blkid --with-udevdir=%{_udevdir}
|
2010-08-26 18:22:58 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_sbindir}/*
|
|
|
|
%{_bindir}/*
|
|
|
|
%{_libdir}/*
|
2012-04-21 00:32:30 +00:00
|
|
|
%{_mandir}/man5/*
|
2010-08-26 18:22:58 +00:00
|
|
|
%{_mandir}/man8/*
|
2011-08-05 19:22:58 +00:00
|
|
|
%{_udevdir}/*
|
2010-08-26 18:22:58 +00:00
|
|
|
|
2012-06-13 19:58:27 +00:00
|
|
|
%config %{_sysconfdir}/init.d/*
|
|
|
|
%config %{_sysconfdir}/zfs/*
|
|
|
|
%config(noreplace) %{_sysconfdir}/zfs/zdev.conf
|
|
|
|
|
|
|
|
%doc AUTHORS ChangeLog COPYING COPYRIGHT DISCLAIMER
|
|
|
|
%doc OPENSOLARIS.LICENSE README.markdown ZFS.RELEASE
|
|
|
|
|
2010-08-26 18:22:58 +00:00
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_includedir}/*
|
|
|
|
|
|
|
|
%files test
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libexecdir}/@PACKAGE@/*
|
|
|
|
|
2011-03-17 22:18:13 +00:00
|
|
|
%files dracut
|
|
|
|
%defattr(-,root,root)
|
2011-03-25 17:01:28 +00:00
|
|
|
%{_datadir}/dracut/*
|
2011-03-17 22:18:13 +00:00
|
|
|
|
2010-08-26 18:22:58 +00:00
|
|
|
%post
|
2011-03-17 22:02:28 +00:00
|
|
|
[ -x /sbin/chkconfig ] && /sbin/chkconfig --add zfs
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%preun
|
2011-07-07 07:25:53 +00:00
|
|
|
[ "$1" = 0 ] && [ -x /sbin/chkconfig ] && /sbin/chkconfig --del zfs
|
2011-03-17 22:02:28 +00:00
|
|
|
exit 0
|