1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 19:46:14 +02:00
build/pkg/gmp/build
David Oberhollenzer 94ccf6d7e2 cleanup: add common implementation of check_update
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-30 10:40:54 +01:00

27 lines
529 B
Plaintext
Executable file

VERSION="6.1.2"
SRCDIR="gmp-$VERSION"
TARBALL="gmp-$VERSION.tar.bz2"
URL="http://ftp.gnu.org/gnu/gmp"
SHA256SUM="5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2"
DEPENDS="toolchain libstdc++-dev"
SUBPKG="gmp gmp-dev gmp++ gmp++-dev"
prepare() {
return
}
build() {
run_configure "$1" --enable-cxx
make -j $NUMJOBS
}
deploy() {
unfuck_libtool
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
check_update_simple "$URL" "gmp-" "tar.bz2"
}