Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
tutorial:program:oppm [2015/02/04 16:57]
vexatos [Registering packages globally]
tutorial:program:oppm [2016/06/20 07:24]
payonel [Tutorial: The OpenPrograms Package Manager (OPPM)]
Line 2: Line 2:
 ============================================ ============================================
  
-The OpenPrograms Package Manager, called OPPM, is a program available through a dungeon loot disk in OpenComputers. It provides a large variety of programs, from now on called "​packages",​ for you to download and install easily. It is meant to make users able to easily distribute their programs, it is supposed to make installing, updating and uninstalling packages just as easy as creating and registering them.+The OpenPrograms Package Manager, called OPPM, is a program available through a dungeon ​[[item:​loot_disks|loot disk]] in OpenComputers. It provides a large variety of programs, from now on called "​packages",​ for you to download and install easily. It is meant to make users able to easily distribute their programs, it is supposed to make installing, updating and uninstalling packages just as easy as creating and registering them.
  
 ##Using OPPM ##Using OPPM
Line 54: Line 54:
           ["​master/​somefolder/​bar.lua"​] = "/",​--"/"​ means the file will be placed inside the folder the user specified, defaults to /usr           ["​master/​somefolder/​bar.lua"​] = "/",​--"/"​ means the file will be placed inside the folder the user specified, defaults to /usr
           ["​master/​somefolder/​barinfo.txt"​] = "//​etc",​ -- double slash for using an absolute path           ["​master/​somefolder/​barinfo.txt"​] = "//​etc",​ -- double slash for using an absolute path
 +          [":​master/​otherfolder"​] = "/​share/​something",​ -- A colon marks a folder, will include everything in that folder
 +          [":​master/​otherfolder"​] = "//​etc/​something",​ -- This also works with absolute paths
           ["​master/​somefolder/​barlib.lua"​] = "/​subfolder",​--Places the file in a subfolder in the user-specified folder           ["​master/​somefolder/​barlib.lua"​] = "/​subfolder",​--Places the file in a subfolder in the user-specified folder
           ["​master/​somefolder/​libfolder/"​] = "/"​           ["​master/​somefolder/​libfolder/"​] = "/"​
Line 97: Line 99:
 ```lua ```lua
 {--This is an example for a programs.cfg file. Please do not add any comments inside actual programs.lua files {--This is an example for a programs.cfg file. Please do not add any comments inside actual programs.lua files
-    ​["​example-package"​] = { +  ​["​example-package"​] = { 
-      files = { +    files = { 
-            ["​master/​somefolder/​bar.lua"​] = "/",​--"/"​ means the file will be placed inside the folder the user specified, defaults to /usr +      ["​master/​somefolder/​bar.lua"​] = "/",​--"/"​ means the file will be placed inside the folder the user specified, defaults to /usr 
-            ["​master/​somefolder/​barinfo.txt"​] = "//​etc",​ -- double slash for using an absolute path +      ["​master/​somefolder/​barinfo.txt"​] = "//​etc",​ -- double slash for using an absolute path 
-            ["​master/​somefolder/​barlib.lua"] = "/subfolder",--Places the file in subfolder ​in the user-specified ​folder +      [":master/otherfolder"] = "/share/​something", -- A colon marks folder, will include everything ​in that folder 
-            ["​master/​somefolder/​libfolder/​"] = "/"​ +      [":master/otherfolder"] = "//​etc/​something", ​-- This also works with absolute paths 
-      }+      ["master/​somefolder/​barlib.lua"] = "/subfolder",--Places ​the file in a subfolder ​in the user-specified folder 
-      ​dependencies = { +      ​["master/​somefolder/​libfolder/"= "/"​
-            ​["GML"] = "/lib"--This package is installed into the specified ​subfolder +
-      }, +
-      name = "​Package name",--This is for "oppm info" +
-      ​description = "This is an example description",​--This is for "oppm info"​ +
-      authors = "​Someone,​ someone else",​--This is for "oppm info"​ +
-      note = "​Additional installation instructions,​ general instructions and additional information/notes go here, this is an optional line."+
-      hidden ​true, -- Add this optional line to make your package not visible in "oppm list", useful for custom dependency libraries +
-      repo="​tree/master/​somefolder" ​--Used by the website. This is where the package will link to on the website+
     },     },
-    ["​yet-another-package"​] = { +    ​dependencies = { 
-            ... +      ["​GML"​] = "/​lib"​--This package is installed into the specified subfolder 
-    }+    }, 
 +    name = "​Package name",​--This is for "oppm info"​ 
 +    description = "This is an example description",​--This is for "oppm info"​ 
 +    authors = "​Someone,​ someone else",​--This is for "oppm info"​ 
 +    note = "​Additional installation instructions,​ general instructions and additional information/​notes go here, this is an optional line.",​ 
 +    hidden = true, -- Add this optional line to make your package not visible in "oppm list", useful for custom dependency libraries 
 +    repo="​tree/​master/​somefolder"​ --Used by the website. This is where the package will link to on the website 
 +  }, 
 +  ​["​yet-another-package"​] = { 
 +          ... 
 +  }
 } }
 ``` ```