1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-01 17:58:43 +02:00
build/pkg/inotify-tools/build
David Oberhollenzer e8542cacc0 inotify-tools: fix check_update
Remove empty lines from results so cut doesn't choke on them.

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-30 11:15:08 +01:00

27 lines
636 B
Plaintext
Executable file

VERSION="3.20.1"
SRCDIR="inotify-tools-${VERSION}"
TARBALL="${VERSION}.tar.gz"
URL="https://github.com/rvoicilas/inotify-tools/archive"
SHA256SUM="a433cc1dedba851078276db69b0e97f9fe41e4ba3336d2971adfca4b3a6242ac"
DEPENDS="toolchain"
prepare() {
./autogen.sh
}
build() {
run_configure "$1" --disable-doxygen
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
curl --silent -L "https://github.com/rvoicilas/inotify-tools/releases" |\
grep -o "tag/[0-9.]*" | sed 's#tag/##g' | sed '/^$/d' |\
verson_find_greatest "$VERSION"
}