forked from smpallen99/exrm-rpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
35 lines (30 loc) · 786 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
defmodule ExrmRpm.Mixfile do
use Mix.Project
def project do
[app: :exrm_rpm,
version: "0.3.3",
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"],
licenses: ["MIT"],
links: [ { "GitHub", "https://github.com/smpallen99/exrm-rpm" } ] ]
end
end