blob: 186e51b7f5b13bd3202ab9fae1a7995bb1abd1b5 (
plain)
1 # Description: list open files
2 # URL: http://people.freebsd.org/~abe/
3 # Maintainer: Antti Nykanen, aon at iki dot fi
4 # Packager: sten, nick dot steeves at shaw dot ca
5
6 name=lsof
7 version=4.81
8 release=1
9 source=(ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_$version.tar.bz2)
10
11 build() {
12 cd lsof_${version}
13 tar -xf lsof_${version}_src.tar
14 cd lsof_${version}_src
15 yes "" | ./Configure linux
16 sed -i -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile
17 make
18 install -D -m 755 lsof $PKG/usr/sbin/lsof
19 install -D -m 644 lsof.8 $PKG/usr/man/man8/lsof.8
20 }
|