summaryrefslogtreecommitdiffstats
path: root/utils/lsof/Makefile
blob: 6062b32e4cf4bf56e99cd780e0458ea1377a064b (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
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=lsof
PKG_VERSION:=4.99.7
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/lsof-org/lsof/releases/download/$(PKG_VERSION)
PKG_HASH:=4a10391aab0b8ce1f539e82a1966693b2a6cf225972a6504ebb7ec4fa71675de
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

PKG_MAINTAINER:=Maxim Storchak <m.storchak@gmail.com>
PKG_LICENSE:=lsof
PKG_LICENSE_FILES:=COPYING
PKG_CPE_ID:=cpe:/a:lsof_project:lsof
PKG_FIXUP:=autoreconf

include $(INCLUDE_DIR)/package.mk

DISABLE_NLS:=

define Package/lsof
  SECTION:=utils
  CATEGORY:=Utilities
  TITLE:=LiSt Open Files - a diagnostic tool
  URL:=https://lsof.readthedocs.io/en/latest/
endef

CONFIGURE_ARGS += \
    --without-selinux \
    --without-libtirpc \
    --disable-liblsof

MAKE_FLAGS += man8_MANS=

define Package/lsof/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/lsof $(1)/usr/bin
endef

$(eval $(call BuildPackage,lsof))