1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 03:26:14 +02:00
build/pkg/tc-mpc/build
David Oberhollenzer b1bdce20a9 Add automatic update chacking script
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>
2018-05-08 15:01:23 +02:00

24 lines
420 B
Plaintext
Executable file

VERSION="1.1.0"
SRCDIR="mpc-$VERSION"
TARBALL="mpc-$VERSION.tar.gz"
URL="http://ftp.gnu.org/gnu/mpc"
SHA256SUM="6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e"
DEPENDS=""
prepare() {
return
}
build() {
return
}
deploy() {
return
}
check_update() {
curl --silent -L "$URL" | grep -o ">mpc-[0-9.]*tar.gz<" | \
sed 's/>mpc-//g' | sed 's/.tar.gz<//g' | \
verson_find_greatest "$VERSION"
}