diff options
author | Johan Oudinet <johan.oudinet@gmail.com> | 2015-01-12 10:32:08 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-03 10:23:05 +0100 |
commit | 730a94203c5eae7dbafcecde22a12c94bb2a07aa (patch) | |
tree | 30c2048b1a0f549e35cd32ba29e45f01fc7787e3 /package/erlang-goldrush | |
parent | 0fe05ff3e16113f2c558ba1f8a7bc2836842a08e (diff) | |
download | buildroot-730a94203c5eae7dbafcecde22a12c94bb2a07aa.tar.gz buildroot-730a94203c5eae7dbafcecde22a12c94bb2a07aa.zip |
erlang-goldrush: new package.
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/erlang-goldrush')
-rw-r--r-- | package/erlang-goldrush/Config.in | 7 | ||||
-rw-r--r-- | package/erlang-goldrush/erlang-goldrush.mk | 14 |
2 files changed, 21 insertions, 0 deletions
diff --git a/package/erlang-goldrush/Config.in b/package/erlang-goldrush/Config.in new file mode 100644 index 0000000000..2ee579a7a5 --- /dev/null +++ b/package/erlang-goldrush/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_ERLANG_GOLDRUSH + bool "erlang-goldrush" + help + Goldrush is a small Erlang app that provides fast event + stream processing. + + https://github.com/DeadZen/goldrush diff --git a/package/erlang-goldrush/erlang-goldrush.mk b/package/erlang-goldrush/erlang-goldrush.mk new file mode 100644 index 0000000000..b18a8ec483 --- /dev/null +++ b/package/erlang-goldrush/erlang-goldrush.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# erlang-goldrush +# +################################################################################ + +ERLANG_GOLDRUSH_VERSION = 0.1.6 +ERLANG_GOLDRUSH_SITE = $(call github,DeadZen,goldrush,$(ERLANG_GOLDRUSH_VERSION)) +ERLANG_GOLDRUSH_LICENSE = ISC +ERLANG_GOLDRUSH_LICENSE_FILES = LICENSE +ERLANG_GOLDRUSH_INSTALL_STAGING = YES + +$(eval $(rebar-package)) +$(eval $(host-rebar-package)) |