21 lines
600 B
Plaintext
21 lines
600 B
Plaintext
# Description: The lsof package is useful to List Open Files for a given running application or process.
|
|
# URL: ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/
|
|
# Packager: milisarge
|
|
# Depends on:
|
|
|
|
name=lsof
|
|
version=4.89
|
|
release=1
|
|
source=(ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/lsof_$version.tar.bz2)
|
|
|
|
build() {
|
|
cd lsof_${version}
|
|
tar -xf lsof_${version}_src.tar
|
|
cd lsof_${version}_src
|
|
yes "" | ./Configure linux
|
|
sed -i -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile
|
|
make
|
|
install -D -m 755 lsof $PKG/usr/sbin/lsof
|
|
install -D -m 644 lsof.8 $PKG/usr/man/man8/lsof.8
|
|
}
|