diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-01 12:35:59 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-23 02:35:21 +0200 |
commit | 3e1cef3782f066f60987f0d9e1d309bfc4c3d6e1 (patch) | |
tree | 015aa6781cb33c055da964864da4e992cdb391b2 | |
parent | 4c2c9c48f34c261d5d4a72ccfaba68753268e20b (diff) | |
download | meta-rhaberkorn-3e1cef3782f066f60987f0d9e1d309bfc4c3d6e1.tar.gz |
support scarthgap and no longer require autoconf-brokensep
-rw-r--r-- | conf/layer.conf | 4 | ||||
-rw-r--r-- | recipes-support/sciteco/sciteco-curses.inc | 8 |
2 files changed, 5 insertions, 7 deletions
diff --git a/conf/layer.conf b/conf/layer.conf index 70a1197..28ccc2c 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -9,4 +9,6 @@ BBFILE_COLLECTIONS += "rhaberkorn" BBFILE_PATTERN_rhaberkorn = "^${LAYERDIR}/" BBFILE_PRIORITY_rhaberkorn = "6" -LAYERSERIES_COMPAT_rhaberkorn = "kirkstone" +# And probably langdale, mickledore and nanbield as well, +# but they aren't tested. +LAYERSERIES_COMPAT_rhaberkorn = "kirkstone scarthgap" diff --git a/recipes-support/sciteco/sciteco-curses.inc b/recipes-support/sciteco/sciteco-curses.inc index 5bcc3cc..9a06ab3 100644 --- a/recipes-support/sciteco/sciteco-curses.inc +++ b/recipes-support/sciteco/sciteco-curses.inc @@ -1,19 +1,15 @@ DESCRIPTION = "Advanced TECO dialect and interactive screen editor based on Scintilla" -HOMEPAGE = "http://sciteco.sf.net/" +HOMEPAGE = "https://rhaberkorn.github.io/sciteco/" SECTION = "console/utils" LICENSE = "GPL-3.0-only" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" -PR = "r0" - SRC_URI = "gitsm://github.com/rhaberkorn/sciteco.git;protocol=https;branch=master" S = "${WORKDIR}/git" -# SciTECO does not support out-of-tree builds out of the box since -# Scintilla doesn't. -inherit autotools-brokensep pkgconfig +inherit autotools pkgconfig # Since we are cross-compiling, bootstrapping cannot work. # Instead there must be a native sciteco available. |