annotate src/gcc-mpc.mk @ 980:310b148a8061

upgrade package gcc-mpc
author Mark Brand <mabrand@mabrand.nl>
date Sat, 15 May 2010 14:24:30 +0200
parents be2d3c7fa0ba
children dd0e8216d6cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
922
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
1 # This file is part of mingw-cross-env.
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
2 # See doc/index.html for further information.
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # MPC for GCC
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 PKG := gcc-mpc
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6 $(PKG)_IGNORE :=
980
310b148a8061 upgrade package gcc-mpc
Mark Brand <mabrand@mabrand.nl>
parents: 940
diff changeset
7 $(PKG)_VERSION := 0.8.2
310b148a8061 upgrade package gcc-mpc
Mark Brand <mabrand@mabrand.nl>
parents: 940
diff changeset
8 $(PKG)_CHECKSUM := 339550cedfb013b68749cd47250cd26163b9edd4
922
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 $(PKG)_SUBDIR := mpc-$($(PKG)_VERSION)
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_FILE := mpc-$($(PKG)_VERSION).tar.gz
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 $(PKG)_WEBSITE := http://www.multiprecision.org/
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 $(PKG)_URL := $($(PKG)_WEBSITE)/mpc/download/$($(PKG)_FILE)
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 $(PKG)_DEPS :=
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 define $(PKG)_UPDATE
940
be2d3c7fa0ba avoid SSL issues with "https://..." URLs when checking for updates of packages gcc-mpc and gcc-mpfr (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents: 922
diff changeset
16 wget -q --no-check-certificate -O- 'https://gforge.inria.fr/scm/viewvc.php/tags/?root=mpc&sortby=date' | \
922
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 $(SED) -n 's,.*<a name="\([0-9][^"]*\)".*,\1,p' | \
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 head -1
7491ac97c72e upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef