This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSClient.autopkg
66 lines (52 loc) · 1.59 KB
/
PSClient.autopkg
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
62
63
64
65
66
// autopackage file for PSClient
package {
name: "PSClient";
display-name: "CoApp PowerShell Client";
// version: 0.8.0.1; // or auto; if not here, auto is assumed
// arch: any; //any, x86, x64 or auto; if not here auto is assumed
location: "http://coapp.org/repository/${OutputFilename}";
}
//requires {
// package: "coapp.toolkit-1.*";
//}
provides {
feature: "coapp.PowerShell" = "0.8";
}
metadata {
summary: "PowerShell client cmdlets for using and manageing CoApp.";
description: "These PowerShell cmdlets provide easy access to the full functionality of CoApp. In addition, they provide a convenient means to manage CoApp on remote computers."; // or path to a file...
icon: "logo3.png";
author-version : "1.0 RC1";
bug-tracker: "https://github.com/organizations/coapp/dashboard/issues";
stability : "-20";
tags : {
PowerShell, CoApp
};
}
compatability-policy {
minimum: "0.7.0.0";
maximum: "${OneLessThanCurrent}"; // this is the default
versions : {
"0.7",
"0.8"
}; // if not specified, find the versions by looking at the feeds and finding all the major/minor versions in range.
}
files[module] {
include: {
"CoApp.dll",
"CoApp.format.ps1xml",
"CoApp.psd1",
"powershell.exe.config"
};
trim-path: minimal;
};
application {
include : {
module
};
}
package-composition {
symlinks : {
module => @"${powershell}\${Package.Name}\${each.name}" = @"${packagedir}\${each.name}";
};
}