blob: 8042bb60f545c6389021efb2b45ae2d8aec65916 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
%define version @VERSION@
%define RELEASE 1
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
%define prefix /usr
Summary: General GNOME User Documentation
Name: gnome-user-docs
Version: %{version}
Release: %{rel}
Copyright: FDL
Distribution: GNOME RPMS
Source: %{name}-%{version}.tar.gz
Group: Documentation
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-buildroot
Prefix: %{prefix}
Requires: scrollkeeper >= @SCROLLKEEPER_REQUIRED@
%description
This package contains general GNOME user documentation which is not
directly associated with any particular GNOME application or package.
%prep
%setup
%build
./configure --prefix %{prefix}
make
%install
make prefix=$RPM_BUILD_ROOT/%{prefix} install
%clean
rm -rf $RPM_BUILD_ROOT
%post
which scrollkeeper-update>/dev/null 2>&1 && scrollkeeper-update
exit 0
%postun
which scrollkeeper-update>/dev/null 2>&1 && scrollkeeper-update
exit 0
%files
%defattr(-, root, root)
%{prefix}/share/gnome/help
%{prefix}/share/omf/%{name}
%changelog
* Sun Mar 11 2001 Dan Mueth <dan@eazel.com>
- Update as we move to its own module
* Mon Nov 27 2000 Kenny Graunke <kwg@teleport.com>
- Initial cut
|