diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-11-22 15:37:15 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-11-22 15:37:15 +0000 |
commit | 7031df88c171569adb7c6827df18cc86ba1f5b44 (patch) | |
tree | 6746b502baf24c4988133d51821c04a61f762610 /packages | |
parent | fcacf6ef057669597c283ed4d181dc12991334d4 (diff) | |
parent | 567d05ff4a17d6b8015fc4888c94f38d296def30 (diff) |
merge of '0a649e59614b2140ef8f93c2dc52b1361f2acb0b'
and '0b7b234637a0d41420b6a596ef10e38857ff6f57'
Diffstat (limited to 'packages')
-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 +} |