generic-poky/meta/packages/mpfr/mpfr_2.1.1.bb
Richard Purdie 63e19b2629 mpfr: Clean up hardcoded staging references
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3111 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-11-10 22:08:38 +00:00

20 lines
549 B
BlitzBasic

DESCRIPTION = "A C library for multiple-precision floating-point computations with exact rounding"
LICENSE = "LGPL"
SECTION = "libs"
DEPENDS = "gmp"
PR = "r2"
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_HOST}${layout_prefix} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR} \
infodir=${STAGING_DIR_HOST}${layout_infodir}
}