]> git.pld-linux.org Git - packages/gfs.git/blame - gfs.spec
- md5 fix
[packages/gfs.git] / gfs.spec
CommitLineData
ea0d75d3
AM
1#
2# Conditional build:
3Summary: shared-disk cluster file system
4Name: gfs
5%define snap 20040625
6Version: 0.0.0.%{snap}.1
7Release: 1
8License: GPL
9Group: Applications/System
10Source0: %{name}.tar.gz
a934728a 11# Source0-md5: 2e787a04f4b730b705bbd9d25dbdee72
ea0d75d3
AM
12URL: http://sources.redhat.com/cluster/
13BuildRequires: iddev
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%define _sbindir /sbin
17
18%description
19GFS (Global File System) is a cluster file system. It allows a cluster
20of computers to simultaneously use a block device that is shared
21between them (with FC, iSCSI, NBD, etc...). GFS reads and writes to
22the block device like a local filesystem, but also uses a lock module
23to allow the computers coordinate their I/O so filesystem consistency
24is maintained. One of the nifty features of GFS is perfect consistency
25-- changes made to the filesystem on one machine show up immediately
26on all other machines in the cluster.
27
28%prep
29%setup -q -n %{name}
30
31%build
32./configure \
33 --incdir=%{_includedir} \
34 --kernel_src=%{_kernelsrcdir} \
35 --libdir=%{_libdir} \
36 --mandir=%{_mandir} \
37 --prefix=%{_prefix} \
38 --sbindir=%{_sbindir}
39%{__make} \
40 CC="%{__cc}"
41
42%install
43rm -rf $RPM_BUILD_ROOT
44
45%{__make} install \
46 DESTDIR=$RPM_BUILD_ROOT
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51%files
52%defattr(644,root,root,755)
53%attr(755,root,root) %{_sbindir}/*
54%{_mandir}/man?/*
This page took 0.069786 seconds and 4 git commands to generate.