Skip to content

Commit

Permalink
lsof: update & fix to 4.99.3
Browse files Browse the repository at this point in the history
- update 4.99.0 to 4.99.3
- fix manpage
```
# man lsof
man: can't open /usr/share/man/./version: No such file or directory
No manual entry for lsof

```
  • Loading branch information
wwwutz committed Jan 19, 2024
1 parent ecfbd2d commit 8e99916
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions lsof.be0
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION lsof-4.94.0-0
# BEE_VERSION lsof-4.99.3-0

# SRCURL[0]="https://github.com/lsof-org/lsof/archive/${PKGVERSION}/lsof-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/9dc2171f47ad1985f6eb82886ec36472/lsof-4.94.0.tar.gz"
#SRCURL[0]="https://github.com/lsof-org/lsof/archive/${PKGVERSION}/lsof-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/0dbafcbb36f6f495d85c1324170e248e/lsof-4.99.3.tar.gz"

# PATCHURL+=()

Expand All @@ -15,9 +15,10 @@ build_in_sourcedir
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}
mee_patch() {
bee_patch "${@}"
sed -e '/^.so .\/version/ d' Lsof.8 > Lsof.8.fixed
}

mee_configure() {
./Configure linux -n
Expand All @@ -31,5 +32,5 @@ mee_install() {
mkdir -pv ${D}{${SBINDIR},${MANDIR}/man8}

install -m 755 lsof ${D}${SBINDIR}
install -m 644 Lsof.8 ${D}${MANDIR}/man8/lsof.8
install -m 644 Lsof.8.fixed ${D}${MANDIR}/man8/lsof.8
}

0 comments on commit 8e99916

Please sign in to comment.