diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/mpfr | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/mpfr')
-rw-r--r-- | meta/packages/mpfr/mpfr-native_2.1.1.bb | 4 | ||||
-rw-r--r-- | meta/packages/mpfr/mpfr_2.1.1.bb | 20 |
2 files changed, 24 insertions, 0 deletions
diff --git a/meta/packages/mpfr/mpfr-native_2.1.1.bb b/meta/packages/mpfr/mpfr-native_2.1.1.bb new file mode 100644 index 0000000000..119249895d --- /dev/null +++ b/meta/packages/mpfr/mpfr-native_2.1.1.bb | |||
@@ -0,0 +1,4 @@ | |||
1 | include mpfr_${PV}.bb | ||
2 | inherit native | ||
3 | DEPENDS = "gmp-native" | ||
4 | |||
diff --git a/meta/packages/mpfr/mpfr_2.1.1.bb b/meta/packages/mpfr/mpfr_2.1.1.bb new file mode 100644 index 0000000000..1bf29fb6b1 --- /dev/null +++ b/meta/packages/mpfr/mpfr_2.1.1.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | DESCRIPTION = "A C library for multiple-precision floating-point computations with exact rounding" | ||
2 | LICENSE = "LGPL" | ||
3 | MAINTAINER = "Rene Wagner <rw@handhelds.org>" | ||
4 | SECTION = "libs" | ||
5 | DEPENDS = "gmp" | ||
6 | PR = "r2" | ||
7 | |||
8 | SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2" | ||
9 | S = "${WORKDIR}/mpfr-${PV}" | ||
10 | |||
11 | inherit autotools | ||
12 | |||
13 | do_stage() { | ||
14 | oe_runmake install prefix=${STAGING_DIR} \ | ||
15 | bindir=${STAGING_BINDIR} \ | ||
16 | includedir=${STAGING_INCDIR} \ | ||
17 | libdir=${STAGING_LIBDIR} \ | ||
18 | datadir=${STAGING_DATADIR} \ | ||
19 | infodir=${STAGING_DIR}/${HOST_SYS}/info | ||
20 | } | ||