]> git.pld-linux.org Git - packages/gfs2.git/blame - gfs2.spec
- based on gfs.spec rev 1.13
[packages/gfs2.git] / gfs2.spec
CommitLineData
502c6044 1Summary: Shared-disk cluster file system
2Summary(pl.UTF-8): Klastrowy system plików na współdzielonym dysku
3Name: gfs2
4Version: 2.00.00
5Release: 1
6Epoch: 1
7License: GPL v2
8Group: Applications/System
9Source0: ftp://sources.redhat.com/pub/cluster/releases/cluster-%{version}.tar.gz
10# Source0-md5: 2ef3f4ba9d3c87b50adfc9b406171085
11URL: http://sources.redhat.com/cluster/gfs/
12BuildRequires: libvolume_id-devel
13BuildRequires: ncurses-devel
14BuildRequires: perl-base
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%define _sbindir /sbin
18
19%description
20GFS (Global File System) is a cluster file system. It allows a cluster
21of computers to simultaneously use a block device that is shared
22between them (with FC, iSCSI, NBD, etc...). GFS reads and writes to
23the block device like a local filesystem, but also uses a lock module
24to allow the computers coordinate their I/O so filesystem consistency
25is maintained. One of the nifty features of GFS is perfect consistency
26-- changes made to the filesystem on one machine show up immediately
27on all other machines in the cluster.
28
29%description -l pl.UTF-8
30GFS (Global File System) to klastrowy system plików. Pozwala klastrowi
31komputerów na jednoczesne korzystanie z urządzenia blokowego
32dzielonego między nimi (poprzez FC, iSCSI, NBD itp.). GFS odczytuje i
33zapisuje urządzenie blokowe jak lokalny system plików, ale używa
34dodatkowo modułu blokującego, aby umożliwić komputerom koordynowanie
35ich operacji I/O w celu zachowania spójności systemu plików. Jedną z
36szykownych możliwości GFS-a jest idealna spójność - zmiany wykonane w
37systemie plików na jednej maszynie natychmiast pokazują się na
38wszystkich innych maszynach w klastrze.
39
40%prep
41%setup -q -n cluster-%{version}
42cd %{name}
43
44%{__perl} -pi -e 's,-Wall,%{rpmcflags} -I/usr/include/ncurses -Wall,' make/defines.mk.input
45%{__perl} -pi -e 's/-O2 //' gfs_{mkfs,quota,tool}/Makefile
46
47%build
48cd %{name}
49./configure \
50 --libdir=%{_libdir} \
51 --mandir=%{_mandir} \
52 --prefix=%{_prefix} \
53 --sbindir=%{_sbindir}
54%{__make}
55
56%install
57rm -rf $RPM_BUILD_ROOT
58cd %{name}
59
60%{__make} install \
61 DESTDIR=$RPM_BUILD_ROOT
62
63%clean
64rm -rf $RPM_BUILD_ROOT
65
66%files
67%defattr(644,root,root,755)
68%attr(755,root,root) %{_sbindir}/*
69#%attr(754,root,root) /etc/rc.d/init.d/gfs2
70%{_mandir}/man?/*
This page took 0.061047 seconds and 4 git commands to generate.