aboutsummaryrefslogtreecommitdiffstats
path: root/org.openembedded.bc.ui/src/org/openembedded/bc/bitbake/BBLanguageHelper.java
blob: 249bdeeb0136260e43e7b6e0f60713d2e5f7a2a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*****************************************************************************
 * Copyright (c) 2009 Ken Gilmer
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Ken Gilmer - initial API and implementation
 *******************************************************************************/
package org.openembedded.bc.bitbake;

import java.util.Comparator;
import java.util.Map;
import java.util.TreeMap;

/**
 * Here is where all BitBake-related information is centralized.
 * @author kgilmer
 *
 */
public class BBLanguageHelper {
	
	public static final String[] BITBAKE_KEYWORDS = new String[] { "inherit", "require", "export", "addtask", "python", "include"};
	public static final String[] SHELL_KEYWORDS = new String[] { "while", "do", "if", "fi", "ln", "export", "install", "oe_libinstall", "for", "in", "done", "echo", "then", "cat", "rm", "rmdir", "mkdir", "printf", "exit", "test", "cd", "cp"};
	public static final String[] BITBAKE_STANDARD_FUNCTIONS = new String[] { "stage", "configure", "compile", "install" };
	public static final String BITBAKE_RECIPE_FILE_EXTENSION = "bb";

	/**
	 * @return A map of names and descriptions of commonly used BitBake variables.
	 */
	public static Map getCommonBitbakeVariables() {
		Map m = new TreeMap(new Comparator() {

			public int compare(Object o1, Object o2) {

				return ((String) o1).compareTo(((String) o2));
			}
			
		});
		
		m.put("SECTION", "Category of package");
		m.put("PR", "Package Release Number");
		m.put("SRC_URI", "Location of package sources");
		m.put("DESCRIPTION", "Description of package");
		m.put("EXTRA_OEMAKE", "Extra flags to pass to the package makefile");
		m.put("EXTRA_OECONF", "Extra configuration flags for the package makefile");
		m.put("DEPENDS", "The set of build-time dependent packages");
		m.put("RDEPENDS", "The set of run-time dependent packages");
		m.put("HOMEPAGE", "Homepage of the package");
		m.put("LICENSE", "License of the package");
		m.put("FILES_${PN}", "Full file path of files on target.");
		m.put("S", "Package source directory");
		m.put("PV", "Package version");
		m.put("AUTHOR", "Author or maintainer of package");
		m.put("PRIORITY", "Priority of package");
		
		return m;
	}

}