base/{busybox,enchant,fftw,kmod,llvm,musl} Replaced CFLAGS and related CFLAGS with += operator for cleanliness Fixed mkdir commands in: base/{exiv2,fmt,glib,json-glib} Fixed file/recompile_magic.mgc.sh script by discarding /usr in base/file build file Tuned build options in base/flac Discarded unnecessary CPPFLAGS and printf command in base/flex Replaced CFLAGS with LDFLAGS in base/gawk Discarded /usr/bin/update-mime-database with own /etc/rc.d.rc.gtk liner in base/glib's doinst.sh file Discarded CXXFLAGS liner in base/glib Discarded mkdir liner in base/initfs Cause base/llvm build file to properly cd into the smbuild directory smoothly when attempting a rebuild in future Discarded unnecessary CFLAGS options in base/mksh Upgraded base/zstd to 1.5.2, rewrote its build options to use cmake build system
37 lines
783 B
Text
Executable file
37 lines
783 B
Text
Executable file
app=libpcap
|
|
version=1.9.0
|
|
build=1sml
|
|
homepage="http://www.tcpdump.org"
|
|
download="https://www.tcpdump.org/release/libpcap-$version.tar.gz"
|
|
desc="packet capture library"
|
|
requires="musl"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
CFLAGS+=" -D_BSD_SOURCE -DIPPROTO_HOPOPTS=0 -include limits.h" \
|
|
ac_cv_type_u_int64_t=yes \
|
|
./configure \
|
|
--prefix="" \
|
|
--enable-shared \
|
|
--disable-dbus \
|
|
--disable-bluetooth
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
b1449b248bc3f3daf17c1a8bfcb7870e7157d050db36bfce6f9adde6a9ba4893baff40d0f21d50012da02b11ec5a43d21a2b3715ab51dcbe03192541dc83be68 libpcap-1.9.0.tar.lz
|
|
"
|