-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
74 lines (68 loc) · 1.6 KB
/
mix.exs
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
67
68
69
70
71
72
73
74
defmodule ExPTY.MixProject do
use Mix.Project
@version "0.2.1"
@github_url "https://github.com/cocoa-xu/expty"
def project do
[
app: :expty,
version: @version,
elixir: "~> 1.12",
name: "ExPTY",
description: "`forkpty(3)` bindings for elixir",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
compilers: [:elixir_make] ++ Mix.compilers(),
make_env: %{
"HAVE_NINJA" => "#{System.find_executable("ninja") != nil}",
"MAKE_BUILD_FLAGS" =>
System.get_env("MAKE_BUILD_FLAGS", "-j#{System.schedulers_online()}")
},
make_precompiler: {:nif, CCPrecompiler},
make_precompiler_url: "#{@github_url}/releases/download/v#{@version}/@{artefact_filename}",
make_precompiler_nif_versions: [versions: ["2.16"]],
cc_precompiler: [
cleanup: "cleanup"
]
]
end
def application do
[
mod: {ExPTY.Application, []}
]
end
defp deps do
[
{:cc_precompiler, "~> 0.1"},
{:elixir_make, "~> 0.8"},
{:kino, "~> 0.7", optional: true},
{:ex_doc, "~> 0.34", only: :docs, runtime: false}
]
end
defp docs do
[
main: "ExPTY",
source_ref: "v#{@version}",
source_url: @github_url
]
end
defp package() do
[
name: "expty",
files: ~w(
c_src
3rd_party
lib
mix.exs
README*
LICENSE*
Makefile
CMakeLists.txt
checksum.exs
),
licenses: ["Apache-2.0"],
links: %{"GitHub" => @github_url}
]
end
end