Skip to content

Commit 1b9e431

Browse files
committed
Start adding packaging scripts
1 parent 79e4e3c commit 1b9e431

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

package.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.

package/create-nuget-package.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
cd ../src/InEngine.Core/
4+
nuget pack -properties Configuration=Release -properties Platform=AnyCPU
5+

package/inengine.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class Inengine < Formula
2+
desc "A cross-platform .NET program that allows commands to be queued, scheduled, and run directly."
3+
homepage "http://inengine.net"
4+
url "https://github.com/InEngine-NET/InEngine.NET/archive/3.3.0.tar.gz"
5+
sha256 "2b64c91104df74451bcb1f55df5c7c4d822d9bcd56f9fa0fb48ca8f43aa70f1d"
6+
depends_on "mono"
7+
depends_on "nuget"
8+
9+
def install
10+
system "nuget", "restore", "./src"
11+
system "xbuild", "/p:Configuration=Release", "./src/InEngine.Net.sln"
12+
end
13+
14+
test do
15+
system "false"
16+
end
17+
end
18+

0 commit comments

Comments
 (0)