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
442 B
Text
Executable file
24 lines
No EOL
442 B
Text
Executable file
VERSION="0.18"
|
|
SRCDIR="isl-$VERSION"
|
|
TARBALL="isl-$VERSION.tar.bz2"
|
|
URL="ftp://gcc.gnu.org/pub/gcc/infrastructure"
|
|
SHA256SUM="6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
return
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent --list-only "$URL/" | grep -o "isl-[0-9.]*tar.bz2" | \
|
|
sed 's/isl-//g' | sed 's/.tar.bz2//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
} |