]> git.pld-linux.org Git - packages/osquery.git/blob - osquery.spec
0883790d0fc80a46f872e19ca0a082d382ab6f65
[packages/osquery.git] / osquery.spec
1 Summary:        osquery is an operating system instrumentation toolchain
2 Name:           osquery
3 Version:        1.5.0
4 Release:        0.1
5 License:        BSD
6 Group:          Applications/Databases
7 Source0:        https://github.com/facebook/osquery/archive/%{version}/%{name}-%{version}.tar.gz
8 # Source0-md5:  af772f7fe7b9b9a3e8ef2abfa69c2d04
9 URL:            https://osquery.io/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 osquery exposes an operating system as a high-performance relational
14 database. This allows you to write SQL-based queries to explore
15 operating system data. With osquery, SQL tables represent abstract
16 concepts such as running processes, loaded kernel modules, open
17 network connections, browser plugins, hardware events or file hashes.
18
19 %prep
20 %setup -q
21
22 %build
23 %{__make} deps
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 %{__make} install \
28         DESTDIR=$RPM_BUILD_ROOT
29
30 %clean
31 rm -rf $RPM_BUILD_ROOT
32
33 %files
34 %defattr(644,root,root,755)
35 %dir %{_sysconfdir}/%{name}
36 %attr(755,root,root) %{_bindir}/osqueryctl
37 %attr(755,root,root) %{_bindir}/osqueryd
38 %attr(755,root,root) %{_bindir}/osqueryi
39 %{_datadir}/%{name}
40 %dir /var/log/%{name}
This page took 0.109026 seconds and 2 git commands to generate.