This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

How would one generate an RPM for wireshark?

0

I'm sorry if the question is really broad. As far as I know you need to create a spec file. But besides that what else do I have to keep in mind?

Furthermore, are there are build scripts out there already that I can use to generate it? I know ethereal came in rpms...

asked 30 Mar '11, 16:37

Tokolosh's gravatar image

Tokolosh
11335
accept rate: 0%


One Answer:

4

In the packaging/rpm directory tree in the source there's a SPECS subdirectory with a wireshark.spec.in file, which is turned into a wireshark.spec file by the configure script. In addition, there are "rpm-package" and "srpm-package" rules in the top-level Makefile.am; try running the configure script, if you haven't done it already, and then doing "make rpm-package" and see whether it generates an acceptable RPM. (If not, file bugs at the Wireshark bug database.)

(And, yes, people continued generating RPMs after the name changed from Ethereal to Wireshark....)

answered 30 Mar '11, 19:25

Guy%20Harris's gravatar image

Guy Harris ♦♦
17.4k335196
accept rate: 19%

Awesome, exactly what I was looking for =D

(31 Mar '11, 10:52) Tokolosh