Permalink
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?
bee-files/inotify-tools.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
inotifywa{it,tch} - gather filesystem access statistics using inotify inotifywait - efficiently waits for changes to files using Linux's inotify(7) interface. It is suitable for waiting for changes to files from shell scripts.
executable file
41 lines (30 sloc)
642 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION inotify-tools-3.14-1 | |
SRCURL[0]="https://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${PKGVERSION}.tar.gz" | |
# PATCHURL+=() | |
# EXCLUDE+=() | |
build_in_sourcedir | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
mee_configure() { | |
bee_configure --disable-doxygen | |
} | |
#mee_configure_post() { | |
# bash | |
#} | |
#mee_build() { | |
# bee_build | |
#} | |
#mee_install() { | |
# bee_install | |
#} | |
mee_install_post() { | |
rm -v ${D}${LIBDIR}/libinotifytools.a | |
rm -vr ${D}${DOCDIR} | |
rm -vr ${D}${DATAROOTDIR}/doc | |
} | |
## by default this may be 'make install DESTDIR="${D}"' |