2018-11-12 10:20:25 +11:00
|
|
|
# Description: Packet capture library
|
2021-11-21 16:26:02 +01:00
|
|
|
# URL: https://www.tcpdump.org
|
2018-11-12 10:20:25 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2019-08-27 21:48:19 +10:00
|
|
|
# Depends on: libpcap libusb-32
|
2018-11-12 10:20:25 +11:00
|
|
|
|
|
|
|
name=libpcap-32
|
2023-04-08 17:13:15 +02:00
|
|
|
version=1.10.4
|
2018-11-12 10:20:25 +11:00
|
|
|
release=1
|
|
|
|
source=(https://www.tcpdump.org/release/${name%-*}-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${name%-*}-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--disable-dbus \
|
|
|
|
--without-libnl
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install install-shared
|
|
|
|
|
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share}
|
|
|
|
}
|