BitBake/zh tw

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(New page: {{Languages|BitBake}} BitBake is the build tool used by OpenEmbedded. BitBake recipes are simple, declarative files. Here is an example for the openmoko-calculator2 application: DESC...)
 
m (Replacing 'OpenMoko' with 'Openmoko')
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{Languages|BitBake}}
 
{{Languages|BitBake}}
BitBake is the build tool used by [[OpenEmbedded]]. BitBake recipes are simple, declarative files. Here is an example for the openmoko-calculator2 application:
+
BitBake是[[OpenEmbedded]]用來建立build的工具。以下是一個openmoko-calculator2應用程式:
  
  DESCRIPTION = "A Calculator for OpenMoko"
+
  DESCRIPTION = "A Calculator for Openmoko"
 
  SECTION = "openmoko/tools"
 
  SECTION = "openmoko/tools"
 
  DEPENDS = "libmokoui2"
 
  DEPENDS = "libmokoui2"
Line 10: Line 10:
 
  inherit openmoko2
 
  inherit openmoko2
  
The user manual is available at the [http://bitbake.berlios.de/manual/ BitBake berlios page].
+
你可以在 [http://bitbake.berlios.de/manual/ BitBake berlios page 這個位置找到使用者手冊].
[[Category:Software ]]
+
 
[[Category:Application Developer]]
+
[[Category:Application Developer/zh tw]]

Latest revision as of 23:41, 22 August 2008

BitBake是OpenEmbedded用來建立build的工具。以下是一個openmoko-calculator2應用程式:

DESCRIPTION = "A Calculator for Openmoko"
SECTION = "openmoko/tools"
DEPENDS = "libmokoui2"
PV = "0.1.0+svnr${SRCREV}"
PR = "r0"
inherit openmoko2

你可以在 BitBake berlios page 這個位置找到使用者手冊.

Personal tools

BitBake is the build tool used by OpenEmbedded. BitBake recipes are simple, declarative files. Here is an example for the openmoko-calculator2 application:

DESCRIPTION = "A Calculator for OpenMoko"
SECTION = "openmoko/tools"
DEPENDS = "libmokoui2"
PV = "0.1.0+svnr${SRCREV}"
PR = "r0"
inherit openmoko2

The user manual is available at the BitBake berlios page.