compat-32/libpcap-32/Pkgfile

25 lines
505 B
Plaintext
Raw Normal View History

2018-11-12 00:20:25 +01:00
# Description: Packet capture library
2021-11-21 16:26:02 +01:00
# URL: https://www.tcpdump.org
2018-11-12 00:20:25 +01:00
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: libpcap libusb-32
2018-11-12 00:20:25 +01:00
name=libpcap-32
2021-06-14 14:57:38 +02:00
version=1.10.1
2018-11-12 00:20:25 +01: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}
}