Last active
August 29, 2015 14:14
-
-
Save andyli/cc07575f598351e0ad74 to your computer and use it in GitHub Desktop.
Neko Chocolatey package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$scriptPath = (Split-Path -parent $MyInvocation.MyCommand.Definition) | |
Install-ChocolateyPath $scriptPath |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | |
<metadata> | |
<id>neko</id> | |
<title>Neko</title> | |
<version>2.0.0</version> | |
<authors>Haxe Foundation</authors> | |
<licenseUrl>https://github.com/HaxeFoundation/neko/blob/master/LICENSE</licenseUrl> | |
<projectUrl>http://nekovm.org/</projectUrl> | |
<iconUrl>https://cdn.rawgit.com/andyli/cc07575f598351e0ad74/raw/6a9cae9a136670c0052356b773f8e13bf37c13dd/logo.png</iconUrl> | |
<requireLicenseAcceptance>false</requireLicenseAcceptance> | |
<description>Neko is a lightweight and yet well optimized virtual machine. The VM can be easily embedded into any application and your libraries can be accessed using the C foreign function interface.</description> | |
<tags>neko haxe vm</tags> | |
</metadata> | |
<files> | |
<file src="*.*" /> | |
<file src="neko-2.0.0-win\**\*.*" /> | |
</files> | |
</package> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment