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
|
Summary: Manage ip ranges
Name: @PACKAGE_NAME@
Version: @PACKAGE_RPM_VERSION@
Release: @PACKAGE_RPM_RELEASE@%{?release_suffix}%{?dist}
License: GPLv2+
URL: http://firehol.org
Source: %{name}-@PACKAGE_VERSION@.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
Manage ip ranges.
%prep
%setup -q -n %{name}-@PACKAGE_VERSION@
%build
%configure \
--docdir="%{_docdir}/%{name}-%{version}" \
%{?conf}
make %{?_smp_mflags}
%install
rm -rf "%{buildroot}"
make %{?_smp_mflags} install DESTDIR="%{buildroot}"
%files
%{_sbindir}/iprange
%changelog
* Sat Sep 16 2017 Phil Whineray <phil@firehol.org> - 1.0.4-1
- Bugfix release
* Sat Oct 16 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.0.3-1
- speedup release
* Sat Nov 28 2015 Phil Whineray <phil@firehol.org> - 1.0.2-1
- Bugfix release
* Sat Nov 28 2015 Phil Whineray <phil@firehol.org> - 1.0.1-1
- Release new version
* Sun Nov 15 2015 Alon Bar-Lev <alonbl@redhat.com> - 1.0.0-1
- Initial add.
|