]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame_incremental - lsof/lsof.nm
grep: Update to 2.17.
[people/ms/ipfire-3.x.git] / lsof / lsof.nm
... / ...
CommitLineData
1###############################################################################
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
4###############################################################################
5
6name = lsof
7version = 4.85
8release = 1
9
10groups = Development/Debuggers
11url = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
12license = zlib
13summary = A utility which lists open files on a Linux/UNIX system.
14
15description
16 Lsof stands for LiSt Open Files, and it does just that:
17 it lists information about files that are open by the
18 processes running on a system.
19end
20
21thisapp = %{name}_%{version}_src
22
23build
24 requires
25 libselinux-devel
26 end
27
28 build
29 LINUX_BASE=/proc \
30 LSOF_VSTR="2.6.16" \
31 ./Configure linux -n
32 make DEBUG="%{CFLAGS}" %{PARALLELISMFLAGS}
33 end
34
35 install
36 mkdir -pv %{BUILDROOT}/usr/sbin
37 install -m 755 lsof %{BUILDROOT}/usr/sbin
38 mkdir -pv %{BUILDROOT}/usr/share/man/man8
39 cp -vf lsof.8 %{BUILDROOT}/usr/share/man/man8
40 end
41end
42
43packages
44 package %{name}
45
46 package %{name}-debuginfo
47 template DEBUGINFO
48 end
49end