summaryrefslogtreecommitdiff
path: root/meta/meta-opie.oe
blob: 84753bdb9c3675310e3c0f3b121eb089df004523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
DESCRIPTION = "Meta-package for Opie"
DEPENDS = "qte-for-opie libqpe-opie libopie2"
MAINTAINER = "Greg Gilbert <greg@treke.net>"

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}"