Changes between Version 23 and Version 24 of Obsolete/MovedToTree/PackageManagement/BuildingPackages


Ignore:
Timestamp:
Feb 7, 2014, 7:35:39 AM (10 years ago)
Author:
pulkomandy
Comment:

Added an example .PackageInfo file

Legend:

Unmodified
Added
Removed
Modified
  • Obsolete/MovedToTree/PackageManagement/BuildingPackages

    v23 v24  
    120120}}}
    121121
     122=== Example package file ===
     123{{{
     124name                    example
     125version                 42.17-12
     126architecture            x86_gcc2
     127summary                 "This is an example package file"
     128description             "Haiku has a very powerful package management system. Really, you should try it!
     129it even supports muliline strings in package descriptions"
     130packager                "John Doe <test@example.com>"
     131vendor                  "Haiku Project"
     132licenses {
     133        "MIT"
     134}
     135copyrights {
     136        "Copyright (C) 1812-2013 by John Doe <test@example.com>"
     137}
     138provides {
     139        example = 42.17-12
     140        cmd:example = 3.1
     141}
     142requires {
     143        haiku >= r1~alpha4_pm_hrev46213-1
     144        lib:libpython2.6 >= 1.0
     145}
     146urls {
     147        "http://example.com/"
     148}
     149global-writable-files {
     150        "settings/example/configurationFile" keep-old
     151        "settings/example/serverList" keep-old
     152}
     153source-urls {
     154        "Download <http://example.com/source.zip>"
     155}
     156}}}
     157
    122158
    123159== Building a Package with "haikuporter" ==