blob: eae0a8a55f86823adc7260ee4a8e8748cdad5d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"
|