diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/termcap/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/termcap/termcap_11.0.1.bb | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/termcap/.mtn2git_empty b/packages/termcap/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/termcap/.mtn2git_empty diff --git a/packages/termcap/termcap_11.0.1.bb b/packages/termcap/termcap_11.0.1.bb new file mode 100644 index 0000000000..81953021e0 --- /dev/null +++ b/packages/termcap/termcap_11.0.1.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "Terminal Capabilities File" +SECTION = "base" +HOMEPAGE = "http://www.catb.org/~esr/terminfo/" +LICENSE = "PD" + +SRC_URI = "http://www.catb.org/~esr/terminfo/termtypes.tc.gz" +S = "${WORKDIR}" + +do_install() { + install -d ${D}${sysconfdir} + install -m 0644 termtypes.tc ${D}${sysconfdir}/termcap +} + +PACKAGES = "termcap" +FILES_termcap = "${sysconfdir}" + |