]> git.proxmox.com Git - mirror_zfs.git/blob - zfs.spec.in
Remove a stray tab
[mirror_zfs.git] / zfs.spec.in
1 %define name @PACKAGE@
2 %define version @VERSION@
3 %define release @ZFS_META_RELEASE@
4 %define debug_package %{nil}
5
6 Summary: ZFS Library and Utils
7 Group: Utilities/System
8 Name: %{name}
9 Version: %{version}
10 Release: %{release}
11 License: CDDL
12 URL: git://eris.llnl.gov/zfs.git
13 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id} -un)
14 Source: %{name}-%{version}.tar.gz
15 Requires: zlib e2fsprogs
16 BuildRequires: zlib-devel e2fsprogs-devel
17
18 %description
19 The %{name} package contains the libzfs library and support utilities
20 for the zfs file system.
21
22 %package devel
23 Summary: ZFS File System User Headers
24 Group: Development/Libraries
25 %if %{defined ch5} || %{defined el6} || %{defined fc12}
26 Requires: zlib libuuid libblkid
27 BuildRequires: zlib-devel libuuid-devel libblkid-devel
28 %else
29 Requires: zlib e2fsprogs
30 BuildRequires: zlib-devel e2fsprogs-devel
31 %endif
32
33 %description devel
34 The %{name}-devel package contains the header files needed for building
35 additional applications against the %{name} libraries.
36
37 %package test
38 Summary: ZFS File System Test Infrastructure
39 Group: Utilities/System
40
41 %description test
42 The %{name}-test package contains a test infrastructure for zpios which
43 can be used to simplfy the benchmarking of various hardware and software
44 configurations. The test infrastructure additionally integrates with
45 various system profiling tools to facilitate an in depth analysis.
46
47 %package dracut
48 Summary: ZFS Dracut Module
49 Group: System Environment/Base
50 Requires: dracut
51
52 %description dracut
53 The %{name}-dracut package allows dracut to construct initramfs images
54 which are ZFS aware.
55
56 %prep
57 %setup
58 %build
59 %configure --with-config=user --without-blkid
60 make
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64 make DESTDIR=$RPM_BUILD_ROOT install
65
66 %clean
67 rm -rf $RPM_BUILD_ROOT
68
69 %files
70 %defattr(-, root, root)
71 %doc AUTHORS ChangeLog COPYING COPYRIGHT DISCLAIMER
72 %doc OPENSOLARIS.LICENSE README.markdown ZFS.RELEASE
73 %{_sbindir}/*
74 %{_bindir}/*
75 %{_libdir}/*
76 %{_mandir}/man8/*
77 %{_sysconfdir}/init.d/*
78 %{_sysconfdir}/udev/rules.d/*
79 %{_sysconfdir}/zfs/*
80 /sbin/*
81
82 %files devel
83 %defattr(-,root,root)
84 %{_includedir}/*
85
86 %files test
87 %defattr(-,root,root)
88 %{_libexecdir}/@PACKAGE@/*
89
90 %files dracut
91 %defattr(-,root,root)
92 %{_datadir}/dracut/*
93
94 %post
95 [ -x /sbin/chkconfig ] && /sbin/chkconfig --add zfs
96 exit 0
97
98 %preun
99 [ -x /sbin/chkconfig ] && /sbin/chkconfig --del zfs
100 exit 0