blob: 10664742780257d74e286363804666e0a511a1f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Standard Gtk+ icon theme for the Openmoko framework"
HOMEPAGE = "http://www.openmoko.org"
SECTION = "openmoko/base"
LICENSE = "GPL"
PV = "0.1.0+svnr${SRCPV}"
PR = "r3"
inherit autotools pkgconfig
SRC_URI = "svn://svn.openmoko.org/trunk/src/target/OM-2007.2/artwork/;module=icons;proto=http"
S = "${WORKDIR}/icons"
FILES_${PN} += "${datadir}/icons"
pkg_postinst_${PN} () {
if [ "x$D" != "x" ]; then
exit 1
fi
gtk-update-icon-cache -q /usr/share/icons/openmoko-standard
}
PACKAGE_ARCH = "all"
|