I've been using rpmbuild to create a wireshark rpm that includes a plugin I've made. This works fine but I want to create a tshark only package that can run on a server. I used this configure command in the spec file:
But I get the following error once rpmbuild gets to the install part:
Does anyone know what I'm doing wrong? Obviously it's trying to package up all those binaries but I indicated inside the configure command not to compile those ones.. asked 12 Apr '11, 11:58 Tokolosh |
2 Answers:
Certainly it should be possible--I'd be willing to bet that Redhat's RPMs are built with rpmbuild. You might want to start with their spec file, if you're doing it that way though... answered 12 Apr '11, 17:44 JeffMorriss ♦ |
You will need to edit the answered 12 Apr '11, 12:30 cmaynard ♦♦ Yeh lol that was me. I wanted to avoid using make to generate the rpm because in the past that resulted in buggy package. (12 Apr '11, 13:35) Tokolosh |
Good suggestion. So good that I went ahead already and got a tshark spec file form a src rpm on opensuse.org. Seems to have done the job fairly well. Thank you =]