summaryrefslogtreecommitdiffstats
path: root/meta/classes/pkg_metainfo.bbclass
blob: 4b182690f28b755b1069fc2423c7e34984c9a84f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
python do_pkg_write_metainfo () {
	deploydir = d.getVar('DEPLOY_DIR', True)
	if not deploydir:
		bb.error("DEPLOY_DIR not defined, unable to write package info")
		return

	try:
		infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a')
	except OSError:
		raise bb.build.FuncFailed("unable to open package-info file for writing.")
	
	name = d.getVar('PN', True)
	version = d.getVar('PV', True)
	desc = d.getVar('DESCRIPTION', True)
	page = d.getVar('HOMEPAGE', True)
	lic = d.getVar('LICENSE', True)
	
	infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" ) 
	infofile.close()
}

addtask pkg_write_metainfo after do_package before do_build