95 lines
2.4 KiB
RPMSpec
95 lines
2.4 KiB
RPMSpec
|
|
Name: libmodsecurity
|
|
Version: 3.0.2
|
|
Release: 1%{?dist}
|
|
Summary: A library that loads/interprets rules written in the ModSecurity SecRules
|
|
|
|
License: ASL 2.0
|
|
URL: https://www.modsecurity.org/
|
|
|
|
Source0: https://github.com/SpiderLabs/ModSecurity/releases/download/v%{version}/modsecurity-v%{version}.tar.gz
|
|
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: make
|
|
BuildRequires: flex
|
|
BuildRequires: bison
|
|
BuildRequires: git-core
|
|
BuildRequires: ssdeep-devel
|
|
BuildRequires: yajl-devel
|
|
BuildRequires: libcurl-devel
|
|
BuildRequires: lmdb-devel
|
|
BuildRequires: pkgconfig(libxml-2.0)
|
|
BuildRequires: pkgconfig(yajl)
|
|
BuildRequires: pkgconfig(libcurl)
|
|
BuildRequires: pkgconfig(geoip)
|
|
BuildRequires: pkgconfig(libpcre)
|
|
BuildRequires: pkgconfig(lmdb)
|
|
|
|
# libinjection is supposed to be bundled (same as with mod_security 2.x)
|
|
# See: https://github.com/client9/libinjection#embedding
|
|
Provides: bundled(libinjection) = 3.9.2
|
|
|
|
%description
|
|
Libmodsecurity is one component of the ModSecurity v3 project.
|
|
The library codebase serves as an interface to ModSecurity Connectors
|
|
taking in web traffic and applying traditional ModSecurity processing.
|
|
In general, it provides the capability to load/interpret rules written
|
|
in the ModSecurity SecRules format and apply them to HTTP content provided
|
|
by your application via Connectors.
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%package static
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description static
|
|
The %{name}-static package contains static libraries for developing
|
|
applications that use %{name}.
|
|
|
|
|
|
%prep
|
|
%autosetup -n modsecurity-v%{version}
|
|
|
|
%build
|
|
%configure --libdir=%{_libdir}
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc README.md AUTHORS
|
|
%{_libdir}/*.so.*
|
|
%{_bindir}/*
|
|
%license LICENSE
|
|
|
|
%files devel
|
|
%doc README.md AUTHORS
|
|
%{_includedir}/*
|
|
%{_libdir}/*.so
|
|
%license LICENSE
|
|
|
|
%files static
|
|
%{_libdir}/*.a
|
|
%{_libdir}/*.la
|
|
|
|
%clean
|
|
[ "%{buildroot}" != "/" ] && [ -d "%{buildroot}" ] && rm -rf %{buildroot}/*
|
|
[ "%{_builddir}" != "/" ] && [ -d "%{_builddir}" ] && rm -rf %{_builddir}/*
|
|
|
|
%changelog
|
|
* Sun Apr 15 2018 Daniel Steiner <daniel.steiner@greenmail.ch> 3.0.2-1
|
|
- Initial build for Fedora 27
|