Skip to content
Permalink
83e0d7979c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@david
Latest commit 82c2d6c Sep 20, 2019 History
fix URL
cleanup bee-file
2 contributors

Users who have contributed to this file

@pmenzel @david
executable file 38 lines (26 sloc) 692 Bytes
#!/usr/bin/env beesh
# BEE_VERSION lsof-4.91-0
SRCURL[0]="https://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_${PKGVERSION}.tar.gz"
# PATCHURL+=()
# EXCLUDE+=()
build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
gtar --strip-components 1 -xof lsof_${PKGVERSION}_src.tar
}
mee_configure() {
./Configure linux -n
}
mee_build() {
start_cmd make ${BEE_MAKEFLAGS}
}
mee_install() {
mkdir -pv ${D}{${SBINDIR},${MANDIR}/man8}
install -m 755 lsof ${D}${SBINDIR}
install -m 644 lsof.8 ${D}${MANDIR}/man8
}
## by default this may be 'make install DESTDIR="${D}"'