-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
66 lines (59 loc) · 1.53 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
defmodule LazyHTML.MixProject do
use Mix.Project
@lexbor_version "2.4.0"
@version "0.1.1-dev"
@description "Efficient parsing and querying of HTML documents"
@github_url "https://github.com/dashbitco/lazy_html"
def project do
[
app: :lazy_html,
version: @version,
name: "LazyHTML",
description: @description,
elixir: "~> 1.15",
compilers: [:elixir_make] ++ Mix.compilers(),
deps: deps(),
docs: docs(),
package: package(),
make_env: fn ->
%{
"FINE_INCLUDE_DIR" => Fine.include_dir(),
"LEXBOR_VERSION" => @lexbor_version
}
end,
# Precompilation
make_precompiler: {:nif, CCPrecompiler},
make_precompiler_url: "#{@github_url}/releases/download/v#{@version}/@{artefact_filename}",
make_precompiler_filename: "liblazy_html",
make_precompiler_nif_versions: [versions: ["2.16"]]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:fine, "~> 0.1.0"},
{:elixir_make, "~> 0.9.0"},
{:cc_precompiler, "~> 0.1", runtime: false},
{:ex_doc, "~> 0.36", only: :dev, runtime: false}
]
end
defp docs do
[
main: "LazyHTML",
source_url: @github_url,
source_ref: "v#{@version}"
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => @github_url},
files:
~w(c_src lib config mix.exs README.md LICENSE CHANGELOG.md Makefile Makefile.win checksum.exs)
]
end
end