-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
75 lines (67 loc) · 1.7 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
75
defmodule Framebuffer.MixProject do
@moduledoc false
use Mix.Project
@github_url "https://github.com/livinginthepast/framebuffer"
@version "0.0.2"
def project do
[
app: :framebuffer,
compilers: compilers(),
deps: deps(),
description: "Interact with Linux framebuffers",
elixir: "~> 1.12",
homepage_url: @github_url,
make_targets: ["all"],
make_clean: ["clean"],
make_executable: :default,
make_makefile: "Makefile",
package: package(),
preferred_cli_env: [credo: :test, dialyzer: :test, docs: :doc],
source_url: @github_url,
start_permanent: Mix.env() == :prod,
version: @version
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
def compilers do
case :os.type() do
{:unix, :linux} ->
[:elixir_make] ++ Mix.compilers()
_other ->
IO.warn("The framebuffer NIF only compiles on Linux", Macro.Env.stacktrace(__ENV__))
Mix.compilers()
end
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false},
{:elixir_make, "~> 0.6", runtime: false},
{:ex_doc, "~> 0.28", only: [:dev, :doc], runtime: false}
]
end
defp package do
[
files: [
".formatter.exs",
"LICENSE.md",
"Makefile",
"README.md",
"c_src",
"lib",
"mix.exs"
],
licenses: ["MIT"],
links: %{
"GitHub" => @github_url
},
maintainers: ["Eric Saxby"]
]
end
end