]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
erlang-p1-zlib: new package.
authorJohan Oudinet <johan.oudinet@gmail.com>
Mon, 12 Jan 2015 09:32:10 +0000 (10:32 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 3 Feb 2015 09:23:11 +0000 (10:23 +0100)
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/erlang-p1-zlib/Config.in [new file with mode: 0644]
package/erlang-p1-zlib/erlang-p1-zlib.mk [new file with mode: 0644]

index 691af64bafd39b88d90b51999adde73da82efc2f..2fa3750bec75b2579fe9a2e0c9a6b348182ca2a1 100644 (file)
@@ -401,6 +401,7 @@ if BR2_PACKAGE_ERLANG
 menu "Erlang libraries/modules"
        source "package/erlang-goldrush/Config.in"
        source "package/erlang-lager/Config.in"
+       source "package/erlang-p1-zlib/Config.in"
 endmenu
 endif
        source "package/guile/Config.in"
diff --git a/package/erlang-p1-zlib/Config.in b/package/erlang-p1-zlib/Config.in
new file mode 100644 (file)
index 0000000..b7e48a1
--- /dev/null
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_ERLANG_P1_ZLIB
+       bool "erlang-p1-zlib"
+       select BR2_PACKAGE_ZLIB
+       help
+         Erlang interface to zlib
+
+         https://github.com/processone/zlib
diff --git a/package/erlang-p1-zlib/erlang-p1-zlib.mk b/package/erlang-p1-zlib/erlang-p1-zlib.mk
new file mode 100644 (file)
index 0000000..4ba3332
--- /dev/null
@@ -0,0 +1,13 @@
+################################################################################
+#
+# erlang-p1-zlib
+#
+################################################################################
+
+ERLANG_P1_ZLIB_VERSION = 52e82bb
+ERLANG_P1_ZLIB_SITE = $(call github,processone,zlib,$(ERLANG_P1_ZLIB_VERSION))
+ERLANG_P1_ZLIB_LICENSE = GPLv2+
+ERLANG_P1_ZLIB_LICENSE_FILES = COPYING
+ERLANG_P1_ZLIB_DEPENDENCIES = zlib
+
+$(eval $(rebar-package))