diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2010-11-01 19:45:14 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2010-11-01 20:07:14 +0100 |
commit | 3327c6130276991eb64e950cae44657aeb21a850 (patch) | |
tree | 8d01ba157c0a2fa7469dc21efc926b4e2b17e4a9 | |
parent | 6b32c02a1480bcb2e7c311ac3c623976565626d8 (diff) | |
download | meta-openembedded-3327c6130276991eb64e950cae44657aeb21a850.tar.gz |
angstrom-layers: add font-update-common from OE into meta-openembedded
Signed-off-by: Koen Kooi <k-kooi@ti.com>
-rw-r--r-- | recipes-graphics/font-update-common/font-update-common/update-fonts | 4 | ||||
-rw-r--r-- | recipes-graphics/font-update-common/font-update-common_0.1.bb | 15 |
2 files changed, 19 insertions, 0 deletions
diff --git a/recipes-graphics/font-update-common/font-update-common/update-fonts b/recipes-graphics/font-update-common/font-update-common/update-fonts new file mode 100644 index 0000000000..19e3157d2f --- /dev/null +++ b/recipes-graphics/font-update-common/font-update-common/update-fonts | |||
@@ -0,0 +1,4 @@ | |||
1 | #!/bin/sh | ||
2 | #Author: Rolf Leggewie | ||
3 | |||
4 | run-parts /etc/update-fonts-common.d/ | ||
diff --git a/recipes-graphics/font-update-common/font-update-common_0.1.bb b/recipes-graphics/font-update-common/font-update-common_0.1.bb new file mode 100644 index 0000000000..0b5e388b7c --- /dev/null +++ b/recipes-graphics/font-update-common/font-update-common_0.1.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | DESCRIPTION = "Scripts to be called when fonts are installed or removed \ | ||
2 | to make them known to the WM, whether X11 or Opie" | ||
3 | AUTHOR = "Rolf Leggewie <oe-devel@rolf.leggewie.biz" | ||
4 | |||
5 | LICENSE = "MIT" | ||
6 | |||
7 | SRC_URI = "file://update-fonts" | ||
8 | |||
9 | do_install() { | ||
10 | install -d ${D}${bindir} | ||
11 | install -d ${D}${sysconfdir}/update-fonts-common.d/ | ||
12 | install -m 0755 ${WORKDIR}/update-fonts ${D}${bindir} | ||
13 | } | ||
14 | |||
15 | PACKAGE_ARCH = "all" | ||