#!/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