1 # RPM Spec file for mod_rrd 2 3 Name: mod_rrd 4 Version: 1.0.1 5 Release: 1%{?dist} 6 Summary: Apache httpd rrd filter module 7 License: ASL 2.0 8 Group: System Environment/Daemons 9 Source: https://github.com/minfrin/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2 10 Url: https://github.com/minfrin/%{name} 11 BuildRequires: gcc, pkgconfig(apr-1), pkgconfig(apr-util-1), httpd-devel 12 Requires: httpd 13 14 %description 15 The Apache mod_rrd module provides a set of filters and handlers 16 to manipulate and display RRD graphs. 17 18 %prep 19 %setup -q 20 %build 21 %configure 22 make %{?_smp_mflags} 23 24 %install 25 %make_install 26 27 %files 28 %{_libdir}/httpd/modules/mod_rrd.so 29 30 %doc AUTHORS ChangeLog README.md 31 32 %changelog 33 * Tue Oct 22 2019 Graham Leggett <minfrin@sharp.fm> - 1.0.0-1 34 - Initial version of the package 35