Skip to content

Commit

Permalink
Add rpm and deb packaging for bcc-tools
Browse files Browse the repository at this point in the history
Signed-off-by: Brenden Blanco <[email protected]>
  • Loading branch information
Brenden Blanco committed Nov 30, 2015
1 parent c175cf8 commit f7c226d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
12 changes: 12 additions & 0 deletions SPECS/bcc.spec
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ pushd build
make install/strip DESTDIR=%{buildroot}

%changelog
* Sun Nov 29 2015 Brenden Blanco <[email protected]> - 0.1.3-1
- Add bcc-tools package

* Mon Oct 12 2015 Brenden Blanco <[email protected]> - 0.1.2-1
- Add better version numbering into libbcc.so

Expand All @@ -56,6 +59,11 @@ Summary: Python bindings for BPF Compiler Collection (BCC)
%description -n python-bcc
Python bindings for BPF Compiler Collection (BCC)

%package -n bcc-tools
Summary: Command line tools for BPF Compiler Collection (BCC)
%description -n bcc-tools
Command line tools for BPF Compiler Collection (BCC)

%files -n python-bcc
%{python_sitelib}/bcc*

Expand All @@ -72,3 +80,7 @@ Python bindings for BPF Compiler Collection (BCC)
%exclude /usr/share/bcc/examples/*/*.pyo
%exclude /usr/share/bcc/examples/*/*/*.pyc
%exclude /usr/share/bcc/examples/*/*/*.pyo

%files -n bcc-tools
/usr/share/bcc/tools/*
/usr/share/bcc/man/*
2 changes: 2 additions & 0 deletions debian/bcc-tools.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
usr/share/bcc/tools/*
usr/share/bcc/man/*
5 changes: 5 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ Package: python-bcc
Architecture: all
Depends: libbcc, python
Description: Python wrappers for BPF Compiler Collection (BCC)

Package: bcc-tools
Architecture: amd64
Depends: libbcc, python
Description: Command line tools for BPF Compiler Collection (BCC)
2 changes: 1 addition & 1 deletion tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ set(EXAMPLE_FILES biolatency_example.txt funclatency_example.txt
softirqs_example.txt tcpaccept_example.txt vfscount_example.txt)
install(PROGRAMS ${PROGRAMS} DESTINATION share/bcc/tools)
install(FILES ${C_FILES} DESTINATION share/bcc/tools)
install(FILES ${EXAMPLE_FILES} DESTINATION share/bcc/doc/tools)
install(FILES ${EXAMPLE_FILES} DESTINATION share/bcc/tools/doc)

0 comments on commit f7c226d

Please sign in to comment.