1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-29 06:20:12 +02:00
build/pkg/file/build
David Oberhollenzer d959fc28a7 Bump file version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-06-10 17:03:06 +02:00

28 lines
591 B
Plaintext
Executable file

VERSION="5.37"
SRCDIR="file-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="ftp://ftp.astron.com/pub/file"
SHA256SUM="e9c13967f7dd339a3c241b7710ba093560b9a33013491318e88e6b8b57bae07f"
DEPENDS="zlib-dev toolchain"
SUBPKG="file file-dev"
prepare() {
return
}
build() {
run_configure "$1"
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
curl --silent --list-only "$URL/" | grep -o "file-[0-9.]*tar.gz" | \
sed 's/file-//g' | sed 's/.tar.gz//g' | \
verson_find_greatest "$VERSION"
}