mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37: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
449 B
Text
Executable file
24 lines
No EOL
449 B
Text
Executable file
VERSION="0.18.1"
|
|
SRCDIR="cloog-$VERSION"
|
|
TARBALL="cloog-$VERSION.tar.gz"
|
|
URL="ftp://gcc.gnu.org/pub/gcc/infrastructure"
|
|
SHA256SUM="02500a4edd14875f94fe84cbeda4290425cb0c1c2474c6f75d75a303d64b4196"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
return
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent --list-only "$URL/" | grep -o "cloog-[0-9.]*tar.gz" | \
|
|
sed 's/cloog-//g' | sed 's/.tar.gz//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
} |