blob: bf505ff930e9024c90fb9215cc84d84698cc00b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libpcap
pkgver=1.5.3
_sover=1.0.0
pkgrel=0
pkgdesc="A system-independent interface for user-level packet capture"
url="http://www.tcpdump.org/"
arch="all"
license="BSD"
depends=
makedepends="bison flex autoconf"
source="http://www.tcpdump.org/release/$pkgname-$pkgver.tar.gz
"
subpackages="$pkgname-doc $pkgname-dev"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
update_config_sub || return 1
for i in "$srcdir"/*.patch; do
[ -r "$i" ] || continue
msg "Applying $i..."
patch -p1 -i $i || return 1
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-ipv6 \
|| return 1
# seems to be problem with timestamps
sleep 1
./config.status
make all shared || return 1
}
package() {
cd "$_builddir"
mkdir -p "$pkgdir/usr/bin"
make -j1 DESTDIR="$pkgdir" install install-shared
}
md5sums="7e7321fb3aff2f2bb05c8229f3795d4a libpcap-1.5.3.tar.gz"
sha256sums="9ae92159c1060f15e6a90f2c4ad227268b6aaa382c316fa49a31c496b9979e93 libpcap-1.5.3.tar.gz"
sha512sums="ee487b81ef3c8cd9e0173a252f620bdf2ebfde87bd7a95b38ea4658b47982d09ca86502d4a3473ffeb4388fb19e33d1f614236e22b420077b7ab40d3481f18a3 libpcap-1.5.3.tar.gz"
|