diff options
author | Andreas Mueller <schnitzeltony@gmx.de> | 2011-07-31 19:17:24 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-08-05 19:49:58 +0200 |
commit | c2004f5eca871d40e7d5908e9216ad03f2cd6e05 (patch) | |
tree | f9e95b6fb5436cefb34570dcad7dc5b760d76cb8 /meta-xfce | |
parent | cdcac78a2b191d7406210e8d544b88ec4643ad87 (diff) |
xfce.bbclass: A class for xfce-global settings
Diffstat (limited to 'meta-xfce')
-rw-r--r-- | meta-xfce/classes/xfce.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-xfce/classes/xfce.bbclass b/meta-xfce/classes/xfce.bbclass new file mode 100644 index 0000000..a5a35bb --- /dev/null +++ b/meta-xfce/classes/xfce.bbclass @@ -0,0 +1,11 @@ +HOMEPAGE = "http://www.xfce.org" +SRC_URI = "http://archive.xfce.org/src/xfce/${PN}/${@'${PV}'[0:3]}/${PN}-${PV}.tar.bz2" + +inherit autotools gtk-icon-cache pkgconfig + +FILES_${PN} += "${datadir}/icons/* ${datadir}/applications/* ${libdir}/xfce4/modules/*.so*" +FILES_${PN}-doc += "${datadir}/xfce4/doc" + +FILES_${PN}-dev += "${libdir}/xfce4/*/*.la" +FILES_${PN}-dbg += "${libdir}/xfce4/*/.debug" + |