blob: c60edc5b83156549082e1fd0894dbb970e5977e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# xfwm4-themes OE build file
# Copyright (C) 2004, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION="XFCE4 Window Manager Themes"
SECTION = "x11/wm"
inherit xfce
# No ${PN} for this one
PACKAGES=""
PACKAGES_DYNAMIC = "xfwm4-theme-*"
python populate_packages_prepend () {
themedir = bb.data.expand('${datadir}/xfwm4/themes', d)
do_split_packages(d, themedir, '^(.*)', 'xfwm4-theme-%s', 'XFWM4 theme %s', allow_dirs=True)
}
|