diff options
author | Koen Kooi <koen@openembedded.org> | 2010-01-14 11:45:29 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-01-14 11:48:09 +0100 |
commit | 2a8420f21bf586c90ffd4d4f08f94ddff98ba9cf (patch) | |
tree | 40f6053b9aace43bb780fae4b8b7982a092fdb77 /recipes/giac | |
parent | 9e012791606deb36a7ce59f7c8cbb6798b6f3627 (diff) |
giac: add 0.8.4
Diffstat (limited to 'recipes/giac')
-rw-r--r-- | recipes/giac/giac_0.8.4.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/giac/giac_0.8.4.bb b/recipes/giac/giac_0.8.4.bb new file mode 100644 index 0000000000..fa67ace68e --- /dev/null +++ b/recipes/giac/giac_0.8.4.bb @@ -0,0 +1,39 @@ +DESCRIPTION = "A free computer algebra system" +HOMEPAGE = "http://www-fourier.ujf-grenoble.fr/~parisse/giac.html" +SECTION = "console/utils" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "fltk gmp mpfr gsl" + +SRC_URI = "ftp://ftp-fourier.ujf-grenoble.fr/xcas/giac-${PV}.tar.gz" + +inherit autotools + +PARALLEL_MAKE = "" + +TARGET_CC_ARCH += "${LDFLAGS}" + +do_configure() { + sed -i -e s:doc::g ${S}/Makefile.am + oe_runconf + sed -i -e s:doc::g ${S}/Makefile +} + +do_install () { + oe_runmake prefix="${D}${prefix}" \ + bindir="${D}${bindir}" \ + libdir="${D}${libdir}" \ + includedir="${D}${includedir}" \ + install +} + +PACKAGES += " libgiac libxcas" + +FILES_${PN} = "${bindir} \ + ${datadir}/${PN} \ + ${datadir}/application* \ + ${datadir}/pixmaps \ +" + +FILES_libgiac = "${libdir}/libg*.so.*" +FILES_libxcas = "${libdir}/libx*.so.*" |