-
Notifications
You must be signed in to change notification settings - Fork 27
/
mix.exs
47 lines (42 loc) · 1.26 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
defmodule Picam.Mixfile do
use Mix.Project
def project do
[app: :picam,
version: "0.4.1",
elixir: "~> 1.4",
build_embedded: true,
start_permanent: Mix.env == :prod,
compilers: [:elixir_make] ++ Mix.compilers,
make_targets: ["all"],
make_clean: ["clean"],
deps: deps(),
description: description(),
package: package(),
name: "Picam",
homepage_url: "https://github.com/elixir-vision/picam",
source_url: "https://github.com/elixir-vision/picam"]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[{:elixir_make, "~> 0.6", runtime: false},
{:earmark, "~> 1.3", only: :dev},
{:ex_doc, "~> 0.20", only: :dev}]
end
defp description do
"""
Picam is a library that provides a simple API for streaming MJPEG video and capturing JPEG stills
using the camera module on Raspberry Pi devices running Linux.
"""
end
defp package do
[
name: :picam,
files: ["lib", "src/*.[ch]", "Makefile", "test", "assets", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Frank Hunleth", "Jeff Smith", "Greg Mefford"],
licenses: ["BSD 3-Clause License"],
links: %{"GitHub" => "https://github.com/elixir-vision/picam"}
]
end
end