diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-01-21 14:01:54 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-01-21 14:01:54 +0000 |
commit | c98ca90fa8b9540e8efb8fa6e374421c7d3471cb (patch) | |
tree | 2d6cf2af6cb192b7eb01052ff7d4ae8d0b3dd1bf /gmp | |
parent | d417ffbcee19ebfc8c925db38e9583ed8d3353c2 (diff) |
improve gmp and add pycrypto to build system
BKrev: 400e8652Sh8yyb1FnV07W90Ub-Fgjg
Diffstat (limited to 'gmp')
-rw-r--r-- | gmp/gmp_4.1.2.oe | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gmp/gmp_4.1.2.oe b/gmp/gmp_4.1.2.oe index e69de29bb2..3fca4f28c8 100644 --- a/gmp/gmp_4.1.2.oe +++ b/gmp/gmp_4.1.2.oe @@ -0,0 +1,16 @@ +DESCRIPTION = GNU multiprecision arithmetic library +DEPENDS = virtual/libc +RDEPENDS = libc6 + +SRC_URI = ftp://mirrors.kernel.org/gnu/${PN}/${P}.tar.gz \ + file://${FILESDIR}/configure.patch;patch=1 + +inherit autotools libtool + +acpaths = -I . -I mpn -I mpfr + +do_stage () { + install -m 0644 ${S}/.libs/libgmp.lai ${STAGING_LIBDIR}/libgmp.la + oe_soinstall ${S}/.libs/libgmp.so.3.3.2 ${STAGING_LIBDIR} + install -m 0644 ${S}/gmp.h ${STAGING_INCDIR}/gmp.h +} |