diff options
author | Koen Kooi <koen@openembedded.org> | 2007-11-22 15:04:06 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-11-22 15:04:06 +0000 |
commit | 567d05ff4a17d6b8015fc4888c94f38d296def30 (patch) | |
tree | 8f497c0b4549b6597af77589cc855594f739e3d9 | |
parent | 68995fcb4b910842d4def97695aa2095c0b853ee (diff) |
mpfr: add 2.3.0
-rw-r--r-- | packages/mpfr/mpfr-native_2.3.0.bb | 4 | ||||
-rw-r--r-- | packages/mpfr/mpfr_2.3.0.bb | 19 |
2 files changed, 23 insertions, 0 deletions
diff --git a/packages/mpfr/mpfr-native_2.3.0.bb b/packages/mpfr/mpfr-native_2.3.0.bb new file mode 100644 index 0000000000..01ba37c8bf --- /dev/null +++ b/packages/mpfr/mpfr-native_2.3.0.bb @@ -0,0 +1,4 @@ +require mpfr_${PV}.bb +inherit native +DEPENDS = "gmp-native" + diff --git a/packages/mpfr/mpfr_2.3.0.bb b/packages/mpfr/mpfr_2.3.0.bb new file mode 100644 index 0000000000..2acd7da3e4 --- /dev/null +++ b/packages/mpfr/mpfr_2.3.0.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "A C library for multiple-precision floating-point computations with exact rounding" +LICENSE = "LGPL" +SECTION = "libs" +DEPENDS = "gmp" +PR = "r0" + +SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2" +S = "${WORKDIR}/mpfr-${PV}" + +inherit autotools + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} \ + infodir=${STAGING_DIR}/${HOST_SYS}/info +} |