summaryrefslogtreecommitdiff
path: root/opt/lsof
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/lsof
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/lsof')
-rw-r--r--opt/lsof/.footprint7
-rw-r--r--opt/lsof/.signature6
-rw-r--r--opt/lsof/MAKEPKG36
3 files changed, 49 insertions, 0 deletions
diff --git a/opt/lsof/.footprint b/opt/lsof/.footprint
new file mode 100644
index 0000000..91165d4
--- /dev/null
+++ b/opt/lsof/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/lsof
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/lsof.8.gz
diff --git a/opt/lsof/.signature b/opt/lsof/.signature
new file mode 100644
index 0000000..9bc30e6
--- /dev/null
+++ b/opt/lsof/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mMTOL0a8VfhzwkYz/YUQZnKlwkOYTktVRskKtDrcrSisCXn/XIRDcwK1LZFazJNas88Yx4QNByy6/7x43579Rws=
+
+SHA256 (MAKEPKG) = e275e28672854349fc0625d152ae55fa677425ef40b3ca0d863402e6f907fd04
+SHA256 (.footprint) = ab796f7278edb0d633fb21d176e2fd3b337e9886da306501374c4bf28d0ef940
+SHA256 (lsof-4.99.7.tar.gz) = 4a10391aab0b8ce1f539e82a1966693b2a6cf225972a6504ebb7ec4fa71675de
+SHA256 (lsof#4.99.7-1.pkg.tar.gz) = 68f96d40e587b9c18ffee881ebc383438d8874e7ad817d10c27b52091184a36f
diff --git a/opt/lsof/MAKEPKG b/opt/lsof/MAKEPKG
new file mode 100644
index 0000000..6524bf5
--- /dev/null
+++ b/opt/lsof/MAKEPKG
@@ -0,0 +1,36 @@
+#!/bin/mkpkg
+# description: Lists information about open files for running processes
+# url: https://github.com/lsof-org/lsof
+
+name=lsof
+version=4.99.7
+release=1
+depends=()
+source=(https://github.com/lsof-org/lsof/releases/download/$version/$name-$version.tar.gz)
+sha256sums=(
+ "4a10391aab0b8ce1f539e82a1966693b2a6cf225972a6504ebb7ec4fa71675de"
+)
+
+build() {
+ cd $name-$version
+ ./configure \
+ --prefix=/usr \
+ --sbindir=/usr/bin \
+ --bindir=/usr/bin \
+ --mandir=/usr/share/man \
+ --disable-static \
+ --without-libtirpc
+ make
+ make DESTDIR=$PKG install
+
+ # Remove liblsof shared library and headers (not needed for CLI usage)
+ rm -rf $PKG/usr/include
+ rm -rf $PKG/usr/lib
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh