diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-25 08:08:32 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2005-06-25 08:08:32 +0000 |
commit | 21f377cb193109cdb28367c98875c4e897bf4257 (patch) | |
tree | 46c00707ddd7a4ede4df38857e1992ce88c17b2c /packages/gmp/gmp_4.1.2.bb | |
parent | c7184bf9a8a11a5f9a790ce7e00e9301285ba1a6 (diff) |
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into bitbake.utwente.nl:/home/koen/OE/openembedded
2005/06/24 14:00:28-07:00 amd.com!jcrouse
Add x86_64 fix for bad opcode message
BKrev: 42bd1100fItJP4rz7_5jOVChgGeiDA
Diffstat (limited to 'packages/gmp/gmp_4.1.2.bb')
-rw-r--r-- | packages/gmp/gmp_4.1.2.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/gmp/gmp_4.1.2.bb b/packages/gmp/gmp_4.1.2.bb index e69de29bb2..b19d122ddf 100644 --- a/packages/gmp/gmp_4.1.2.bb +++ b/packages/gmp/gmp_4.1.2.bb @@ -0,0 +1,17 @@ +SECTION = "libs" +DESCRIPTION = "GNU multiprecision arithmetic library" +HOMEPAGE = "http://www.swox.com/gmp/" +LICENSE = "GPL LGPL" + +SRC_URI = "ftp://mirrors.kernel.org/gnu/gmp/gmp-${PV}.tar.gz \ + file://configure.patch;patch=1 \ + file://amd64.patch;patch=1" + +inherit autotools + +acpaths = "" + +do_stage () { + oe_libinstall -so libgmp ${STAGING_LIBDIR} + install -m 0644 ${S}/gmp.h ${STAGING_INCDIR}/gmp.h +} |