commit 26975678cda7c4bdcff0d9b400f9d80c8ddf5e2f Author: Michal Ambroz rebus@seznam.cz Date: Tue Jul 1 00:43:57 2014 +0200
Initial build for Fedora
openvas-cli.spec | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 71 insertions(+), 0 deletions(-) --- diff --git a/openvas-cli.spec b/openvas-cli.spec new file mode 100644 index 0000000..a14795e --- /dev/null +++ b/openvas-cli.spec @@ -0,0 +1,71 @@ +#%global tar_version 1.3.0+beta1 + +Name: openvas-cli +Version: 1.3.0 +Release: 1%{?dist} +Summary: Command-line tool to drive OpenVAS Manager + +Group: Applications/System +License: GPLv2+ +URL: http://www.openvas.org +Source0: http://wald.intevation.org/frs/download.php/1633/%%7Bname%7D-%%7Bversion%7D.... +#Source0: http://wald.intevation.org/frs/download.php/1252/%%7Bname%7D-%%7Btar_version... +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: openvas-libraries-devel >= 4.0.0 +BuildRequires: cmake >= 2.6.0 +BuildRequires: glib2-devel +BuildRequires: gnutls-devel +BuildRequires: gpgme-devel +BuildRequires: doxygen +BuildRequires: pkgconfig + + +%description +OpenVAS CLI contains the command line tool "omp" which allows to create batch +processes to drive OpenVAS Manager. + + +%prep +%setup -q +#%setup -q -n %{name}-%{tar_version} + + +%build +%cmake +make %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%doc ChangeLog CHANGES COPYING README +%{_bindir}/omp +%{_bindir}/check_omp +%{_bindir}/omp-dialog +%{_mandir}/man8/omp.8* + + +%changelog +* Sun Jun 1 2014 Michal Ambroz <rebus at, seznam.cz> - 1.3.0-1 +- bump to OpenVAS7 openvas-cli version 1.3.0 + +* Sun Mar 17 2013 Michal Ambroz <rebus at, seznam.cz> - 1.2-1.beta2 +- bump to OpenVAS 6 openvas-cli version 1.2 beta2 + +* Fri Nov 16 2012 Michal Ambroz <rebus at, seznam.cz> - 1.1.5-1 +- bump to bugfix version 1.1.5 + +* Tue Jan 24 2012 Michal Ambroz <rebus at, seznam.cz> - 1.1.4-1 +- bump to bugfix version 1.1.4 + +* Thu Mar 31 2011 Michal Ambroz <rebus at, seznam.cz> - 1.1.2-1 +- initial spec for openvas-cli
scm-commits@lists.fedoraproject.org