]> The Tcpdump Group git mirrors - libpcap/commitdiff
RPM spec file
authormcr <mcr>
Sat, 5 May 2001 00:57:33 +0000 (00:57 +0000)
committermcr <mcr>
Sat, 5 May 2001 00:57:33 +0000 (00:57 +0000)
packaging/pcap.spec [new file with mode: 0644]

diff --git a/packaging/pcap.spec b/packaging/pcap.spec
new file mode 100644 (file)
index 0000000..e550adc
--- /dev/null
@@ -0,0 +1,50 @@
+%define prefix   /usr
+%define version 2001.02.22 
+
+Summary: packet capture library
+Name: libpcap
+Version: %version
+Release: 1
+Group: Development/Libraries
+Copyright: BSD
+Source: libpcap-current.tar.gz
+BuildRoot: /tmp/%{name}-buildroot
+URL: http://www.tcpdump.org
+
+%description
+Packet-capture library LIBPCAP 0.5
+Now maintained by "The Tcpdump Group"
+See http://www.tcpdump.org
+Please send inquiries/comments/reports to [email protected]
+
+%prep
+%setup
+
+%post
+ldconfig
+
+%build
+CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT/usr/{lib,include,man}
+mkdir -p $RPM_BUILD_ROOT/usr/include/net
+mkdir -p $RPM_BUILD_ROOT/usr/man/man3
+install -m 755 -o root libpcap.a $RPM_BUILD_ROOT/usr/lib
+install -m 644 -o root pcap.3 $RPM_BUILD_ROOT/usr/man/man3
+install -m 644 -o root pcap.h $RPM_BUILD_ROOT/usr/include
+install -m 644 -o root pcap-namedb.h $RPM_BUILD_ROOT/usr/include
+install -m 644 -o root net/bpf.h $RPM_BUILD_ROOT/usr/include/net
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%doc LICENSE CHANGES INSTALL README.linux TODO VERSION CREDITS pcap.spec
+/usr/lib/libpcap.a
+/usr/include/pcap.h
+/usr/include/pcap-namedb.h
+/usr/include/net/bpf.h