mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
These entries are no more required - oe-core defaults were reworked long time ago. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
15 lines
472 B
Plaintext
15 lines
472 B
Plaintext
def xfce_verdir(v):
|
|
import re
|
|
m = re.match("^([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"
|