added my Recipes
This commit is contained in:
13
meta-openembedded/meta-xfce/classes/thunar-plugin.bbclass
Normal file
13
meta-openembedded/meta-xfce/classes/thunar-plugin.bbclass
Normal file
@@ -0,0 +1,13 @@
|
||||
inherit xfce features_check
|
||||
|
||||
# xfce4 depends on libwnck3, gtk+3 and libepoxy need to be built with x11 PACKAGECONFIG.
|
||||
# cairo would at least needed to be built with xlib.
|
||||
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
|
||||
|
||||
DEPENDS += "thunar"
|
||||
|
||||
SRC_URI = "http://archive.xfce.org/src/thunar-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2"
|
||||
|
||||
FILES:${PN} += "${libdir}/thunarx-3/*.so"
|
||||
|
||||
FILES:${PN}-dev += "${libdir}/thunarx-3/*.la"
|
||||
6
meta-openembedded/meta-xfce/classes/xfce-app.bbclass
Normal file
6
meta-openembedded/meta-xfce/classes/xfce-app.bbclass
Normal file
@@ -0,0 +1,6 @@
|
||||
inherit xfce features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
SRC_URI = "http://archive.xfce.org/src/apps/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2"
|
||||
|
||||
7
meta-openembedded/meta-xfce/classes/xfce-git.bbclass
Normal file
7
meta-openembedded/meta-xfce/classes/xfce-git.bbclass
Normal file
@@ -0,0 +1,7 @@
|
||||
do_configure:prepend() {
|
||||
cd ${S}
|
||||
NOCONFIGURE=yes ./autogen.sh
|
||||
cd ${B}
|
||||
}
|
||||
|
||||
AUTOTOOLS_COPYACLOCAL = "1"
|
||||
@@ -0,0 +1,14 @@
|
||||
inherit xfce features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
DEPENDS += "libxfce4ui libxfce4util xfce4-panel"
|
||||
|
||||
SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2"
|
||||
|
||||
FILES:${PN} += "${datadir}/xfce4/panel-plugins/"
|
||||
FILES:${PN} += "${datadir}/xfce4/panel/plugins/"
|
||||
FILES:${PN} += "${libdir}/xfce4/panel-plugins/*.so"
|
||||
FILES:${PN} += "${libdir}/xfce4/panel/plugins/*.so"
|
||||
|
||||
FILES:${PN}-dev += "${libdir}/xfce4/panel/plugins/*.la"
|
||||
14
meta-openembedded/meta-xfce/classes/xfce.bbclass
Normal file
14
meta-openembedded/meta-xfce/classes/xfce.bbclass
Normal file
@@ -0,0 +1,14 @@
|
||||
def xfce_verdir(v):
|
||||
import re
|
||||
m = re.match(r"^([0-9]+)\.([0-9]+)", v)
|
||||
return "%s.%s" % (m.group(1), m.group(2))
|
||||
|
||||
HOMEPAGE = "http://www.xfce.org"
|
||||
SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2"
|
||||
|
||||
inherit autotools gettext gtk-icon-cache pkgconfig
|
||||
|
||||
DEPENDS += "intltool-native"
|
||||
|
||||
FILES:${PN} += "${datadir}/icons/* ${datadir}/applications/* ${libdir}/xfce4/modules/*.so*"
|
||||
FILES:${PN}-doc += "${datadir}/xfce4/doc"
|
||||
Reference in New Issue
Block a user