1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-20 12:36:14 +02:00
build/pkg/tc-isl/build
David Oberhollenzer a1d055c8e0 Add dummy package descriptions for toolchain packages
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-03 17:47:02 +01:00

27 lines
513 B
Plaintext
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() {
touch "$2/$PKGNAME.files"
cat > "$2/$PKGNAME.desc" <<_EOF
name $PKGNAME
_EOF
}
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"
}