diff options
-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 +} |