加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

windows – 使用Chocolatey创建自己的包

发布时间:2020-12-14 04:23:04 所属栏目:Windows 来源:网络整理
导读:我正在尝试使用名为 Listary的应用程序为Chocolatey创建一个包.我已按照 Chocolatey wiki和 here的说明进行操作. 我还在http://chocolatey.org创建了一个帐户并使用设置了API密钥 nuget setApiKey -Source 07004 其中 ltapiKey将替换为您的API密钥. 当我输入
我正在尝试使用名为 Listary的应用程序为Chocolatey创建一个包.我已按照 Chocolatey wiki和 here的说明进行操作.

我还在http://chocolatey.org创建了一个帐户并使用设置了API密钥

nuget setApiKey -Source 07004

其中& ltapiKey>将替换为您的API密钥.

当我输入命令choco pack来创建NuGet包时,它说成功创建了包,但是当我测试我刚创建的包使用cinst Listary -source Listary.1.0.nupkg -force时它说

Invalid URI: The format of the URI could not be determined.

Command 'install' failed (sometimes this indicates a partial failure). Additional info/packages: Listary

这就是我在Listary.nuspec文件中的内容.

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
  <metadata>
    <id>Listary</id>
    <title>Listary</title>
    <version>1.0</version>
    <authors>Zhenheng Dai</authors>
    <owners>Zhenheng Dai</owners>
    <summary>Keep files at your fingertips. Listary is a unique search utility for Windows.</summary>
    <description>Listary is a unique search utility for Windows. Not only does it make file browsing truly flexible -- thanks to its multi-file managers support -- but the ultra-compact UI also redefines minimalism. The lightweight design doesn't stop it from providing various advanced features however,that may fit the needs of both casual and power users alike. All you have to do is just type the file name that you’re looking for,and Listary will display the search results at breakneck speed.</description>
    <projectUrl>http://www.listary.com</projectUrl>
    <tags>listary search find filemanager admin</tags>
    <copyright></copyright>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <releaseNotes></releaseNotes>
  </metadata>
  <files>
    <file src="tools**" target="tools" />
  </files>
</package>

而chocolateyInstall.ps1包含以下内容.

$packageName = 'Listary'
$installerType = 'exe'
$url = 'http://www.listary.com/download/Listary.exe'
$silentArgs = '/SP /VERYSILENT /NORESTART'
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url"
https://github.com/chocolatey/choco/wiki/CreatePackages#testing-your-package
(固定链接)

请注意,源不是nupkg,而是找到nupkg文件的目录.

在choco.exe(Chocolatey的转世)中,您只需指向一个nuspec或nupkg文件进行安装即可.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读