File pgtune.spec of Package pgtune
Summary: PostgreSQL Config Tuner
Name: pgtune
Version: 0.9.3
Release: 1
License: BSD-3-Clause
Group: Applications/Databases
URL: http://pgfoundry.org/projects/pgtune
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Source0: http://pgfoundry.org/frs/download.php/2449/%{name}-%{version}.tar.gz
Patch0: pgtune-settingsdir.patch
Requires: python-base
Requires: postgresql-server
Buildarch: noarch
%description
pgtune takes the wimpy default postgresql.conf and expands the database server
to be as powerful as the hardware it's being deployed on.
%prep
%setup -q -n %{name}-%{version}
%patch0 -p0
%build
%install
rm -rf %{buildroot}
install -d %{buildroot}%{_bindir}
install -d %{buildroot}%{_datadir}/%{name}
install -m 755 pgtune %{buildroot}%{_bindir}
install -m 644 -p pg_settings* %{buildroot}%{_datadir}/%{name}
%clean
rm -rf %{buildroot}
%files
%defattr(0644,root,root,0755)
%doc TODO COPYRIGHT README TODO
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/*
%attr(755,root,root) %{_bindir}/pgtune
%changelog