diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-01-23 15:30:57 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-01-23 15:30:57 +0000 |
commit | 899e0e319cef44fa5d81d636722b3a3e24aa7cb3 (patch) | |
tree | 1778620aa6be77b0e2de31cf9a8e53bb8f41e39a /packages/font-update-common | |
parent | 7b9de9ebe8559476d3545b733284376892a2bda9 (diff) | |
parent | afb0f20bdd09cacf09e4757bb6a40cc14b8a7e91 (diff) |
merge of 'b4db7faff89bf68649ff9993f351d168e6ee5446'
and 'f8ff231a78b465cc9a7581f07cda1458d94ad382'
Diffstat (limited to 'packages/font-update-common')
-rw-r--r-- | packages/font-update-common/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/font-update-common/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/font-update-common/files/update-fonts | 4 | ||||
-rw-r--r-- | packages/font-update-common/font-update-common_0.1.bb | 13 |
4 files changed, 17 insertions, 0 deletions
diff --git a/packages/font-update-common/.mtn2git_empty b/packages/font-update-common/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/font-update-common/.mtn2git_empty diff --git a/packages/font-update-common/files/.mtn2git_empty b/packages/font-update-common/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/font-update-common/files/.mtn2git_empty diff --git a/packages/font-update-common/files/update-fonts b/packages/font-update-common/files/update-fonts new file mode 100644 index 0000000000..19e3157d2f --- /dev/null +++ b/packages/font-update-common/files/update-fonts @@ -0,0 +1,4 @@ +#!/bin/sh +#Author: Rolf Leggewie + +run-parts /etc/update-fonts-common.d/ diff --git a/packages/font-update-common/font-update-common_0.1.bb b/packages/font-update-common/font-update-common_0.1.bb new file mode 100644 index 0000000000..eae0a8a55f --- /dev/null +++ b/packages/font-update-common/font-update-common_0.1.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "Scripts to be called when fonts are installed or removed \ +to make them known to the WM, whether X11 or Opie" +AUTHOR = "Rolf Leggewie <oe-devel@rolf.leggewie.biz" + +SRC_URI = "file://update-fonts" + +do_install() { + install -d ${D}${bindir} + install -d ${D}${sysconfdir}/update-fonts-common.d/ + install -m 0755 ${WORKDIR}/update-fonts ${D}${bindir} +} + +PACKAGE_ARCH = "all" |