diff options
author | Matthias Hentges <oe@hentges.net> | 2004-10-12 14:04:40 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-10-12 14:04:40 +0000 |
commit | ad67cc461bf2d612f427df24a9b0078fd23293ca (patch) | |
tree | 212572ac516b7dfc8e8b08c9c16e72a4492851b3 /micro-emacs | |
parent | d1c3b5ac5b67787dd8591d75c37b450367900831 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into handhelds.org:/home/mhentges/OpenEmbedded/packages
2004/10/12 16:03:13+02:00 handhelds.org!CoreDump
More section fixes
BKrev: 416be478U3wZ_yiCDqd0QreoBYPNrg
Diffstat (limited to 'micro-emacs')
-rw-r--r-- | micro-emacs/micro-emacs_20040301.oe | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/micro-emacs/micro-emacs_20040301.oe b/micro-emacs/micro-emacs_20040301.oe index e69de29bb2..5a460985da 100644 --- a/micro-emacs/micro-emacs_20040301.oe +++ b/micro-emacs/micro-emacs_20040301.oe @@ -0,0 +1,27 @@ +DESCRIPTION = "Mini-version of emacs, from http://www.jasspa.com" +SECTION = "console/utils" +PRIORITY = "optional" +MAINTAINER = "Jason Haslup <openembedded@haslup.com>" +LICENSE = "GPL" +DEPENDS = "ncurses" + +S = "${WORKDIR}/me040301" + +SRC_URI = "http://www.jasspa.com/release_040301/jasspa-mesrc-20040301.tar.gz \ + http://www.jasspa.com/release_040301/jasspa-memacros-20040301.tar.gz \ + file://${FILESDIR}/zaurus_make.patch;patch=1" + +do_compile () { + oe_runmake -C src -f zaurus.gmk mec +} + +do_install() { + install -d ${D}/${bindir} + install -d ${D}/${datadir}/jasspa/macros + install -m 0755 src/mec ${D}/${bindir}/mec + install -m 0644 ${WORKDIR}/*.* ${D}/${datadir}/jasspa/macros/ +} + +PACKAGES += " ${PN}-macros" +FILES_${PN}-macros = "${datadir}/jasspa" + |