mirror of
https://github.com/pygos/build.git
synced 2024-11-05 19:47:09 +01:00
David Oberhollenzer
c8d01f966a
Been working on this for too long, don't remember the specifics, will add documentation. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
27 lines
No EOL
501 B
Text
Executable file
27 lines
No EOL
501 B
Text
Executable file
VERSION="1.1.0"
|
|
SRCDIR="mpc-$VERSION"
|
|
TARBALL="mpc-$VERSION.tar.gz"
|
|
URL="http://ftp.gnu.org/gnu/mpc"
|
|
SHA256SUM="6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e"
|
|
DEPENDS="tc-pkgtool"
|
|
|
|
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 ">mpc-[0-9.]*tar.gz<" | \
|
|
sed 's/>mpc-//g' | sed 's/.tar.gz<//g' | \
|
|
verson_find_greatest "$VERSION"
|
|
} |