blob: 5ace11eb17a3373727e44e43604ab799be0b31e6 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=lsof
pkgver=4.84
pkgrel=0
pkgdesc="LiSt Open Files"
url="http://people.freebsd.org/~abe/"
arch="x86 x86_64"
license="custom"
subpackages="$pkgname-doc"
depends=
makedepends=""
source="ftp://sunsite.ualberta.ca/pub/Mirror/$pkgname/${pkgname}_$pkgver.tar.bz2"
_builddir="$srcdir"/${pkgname}_${pkgver}/${pkgname}_${pkgver}_src
prepare() {
# theres a tarball in teh tarball...
cd "$srcdir"/${pkgname}_${pkgver}
tar -xf ${pkgname}_${pkgver}_src.tar
cd "$_builddir"
sed -e "s|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|" \
-i dialects/linux/machine.h
}
build () {
cd "$_builddir"
./Configure -n linux
make || return 1
}
package() {
cd "$_builddir"
install -D -m0755 -o root -g root lsof "$pkgdir"/usr/sbin/lsof
install -D -m0644 -o root -g root lsof.8 \
"$pkgdir"/usr/share/man/man8/lsof.8
}
md5sums="a09326df500ef7e4550af546868338d6 lsof_4.84.tar.bz2"
|