blob: 6bfbc0e584f186db600026c2d4baabac66dbbd4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
DESCRIPTION = "Meta-package for Opie"
DEPENDS = "qte-for-opie libqpe-opie libopie2 manufacturers"
def opie_packages(d):
import oe, os
files = os.listdir( oe.data.getVar( "TOPDIR", d, True ) )
pkgs = [ f for f in files if f.startswith( "opie-" ) and f != "opie-3rdparty" ]
return " ".join( pkgs )
OPIE_PACKAGES := "${@opie_packages(d)}"
DEPENDS = "qte-for-opie libqpe-opie libopie2 ${OPIE_PACKAGES}"
|