mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
b1bdce20a9
Crunch project websites and try to find the latest version for each package without having to do the work manually. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
24 lines
No EOL
425 B
Text
Executable file
24 lines
No EOL
425 B
Text
Executable file
VERSION="4.0.1"
|
|
SRCDIR="mpfr-$VERSION"
|
|
TARBALL="mpfr-$VERSION.tar.xz"
|
|
URL="http://ftp.gnu.org/gnu/mpfr"
|
|
SHA256SUM="67874a60826303ee2fb6affc6dc0ddd3e749e9bfcb4c8655e3953d0458a6e16e"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
return
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent -L "$URL" | grep -o ">mpfr-[0-9.]*tar.xz<" | \
|
|
sed 's/>mpfr-//g' | sed 's/.tar.xz<//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
} |