1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-20 04:26:13 +02:00
build/pkg/tc-mpfr/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
496 B
Plaintext
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() {
touch "$2/$PKGNAME.files"
cat > "$2/$PKGNAME.desc" <<_EOF
name $PKGNAME
_EOF
}
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"
}