diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2009-10-07 19:29:36 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2009-10-29 20:43:50 -0200 |
commit | 7afc325ab1fac79e1eaba65383bfed12d705d7bc (patch) | |
tree | 9a238963ef0aa1001d4832ad261850e827d3e9d4 /recipes/chicken/chicken3.inc | |
parent | bbe9ae502bf711a30197ddf26dd91bc91f4cf421 (diff) |
chicken: revamp recipes
To allow easy usage of chicken, in embedded environments, we have done
some refactoring in the packages:
- split it up to chicken, libchicken and libuchickenl
- drop 2.6 version since no distro depends on that and is not
commonly used anymore;
- generalize .inc file to be usable for 3.x and 4.x versions;
- add new 4.2.0 release,
- use INC_PR.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes/chicken/chicken3.inc')
-rw-r--r-- | recipes/chicken/chicken3.inc | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/recipes/chicken/chicken3.inc b/recipes/chicken/chicken3.inc deleted file mode 100644 index 2feebfb48a..0000000000 --- a/recipes/chicken/chicken3.inc +++ /dev/null @@ -1,36 +0,0 @@ -DESCRIPTION = "A compiler that translates Scheme source files to C, and an interpreter" -HOMEPAGE = "http://www.call-with-current-continuation.org/" -SECTION = "interpreters" -PRIORITY = "optional" -LICENSE = "BSD" - -SRC_URI = "http://chicken.wiki.br/releases/${PV}/chicken-${PV}.tar.gz" - -inherit autotools - -do_compile() { - export PLATFORM=linux - export PREFIX=${prefix} - export HOST=${TARGET_ARCH}-${DISTRO}-${TARGET_OS} - export C_COMPILER=${HOST}-gcc - export LIBRARIAN=${HOST}-ar - # ARCH= is weird... but it's not enough to export this variable. - # If ARCH is not set to empty-string, then the Makefile will try to - # use the apply-hack.s file applicable to the machine doing the compiling. - # There is no such apply-hack assembler code for arm, at least not yet. - make ARCH= -} - -do_install() { - export PLATFORM=linux - export PREFIX=${prefix} - export HOST=${TARGET_ARCH}-${DISTRO}-${TARGET_OS} - export C_COMPILER=${HOST}-gcc - export LIBRARIAN=${HOST}-ar - make ARCH= DESTDIR=${D} install -} - -FILES_${PN} = "${bindir}/csi ${bindir}/chicken-bug" -FILES_${PN} += "${libdir}/lib*.so.* ${libdir}/chicken" -FILES_${PN} += "${datadir}/chicken/*.*" -FILES_${PN}-dev += "${bindir}" |