-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmix.exs
37 lines (32 loc) · 822 Bytes
/
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
defmodule ExrmRpm.Mixfile do
use Mix.Project
def project do
[app: :exrm_rpm,
version: "0.3.4",
elixir: "~> 1.0",
description: description,
package: package,
deps: deps]
end
def application do
[applications: []]
end
defp description do
"""
Adds simple Red Hat Package Manager (RPM) generation to the exrm package manager.
The generated RPM file includes the Elixir release and an init.d script to
manage the project's service.
"""
end
defp deps do
[{:exrm, "~> 1.0.0"}]
end
defp package do
[ files: ["lib", "priv", "mix.exs", "README.md", "LICENSE"],
contributors: ["Stephen Pallen"],
maintainers: ["Stephen Pallen"],
licenses: ["MIT"],
links: %{github: "https://github.com/smpallen99/exrm-rpm"}
]
end
end