summaryrefslogtreecommitdiff
path: root/package/libebml
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-02-26 06:26:20 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-02-26 06:27:01 +0100
commit90a40404b745523f79b1fe2a6160b5fd060bf6a3 (patch)
tree474c83bef2db372b41c33dd7913ab247c3e60db5 /package/libebml
parentb8c75fabf07126c2d5fb8a60dc2f529bb2dcb12b (diff)
libebml: new package
Diffstat (limited to 'package/libebml')
-rw-r--r--package/libebml/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/libebml/Makefile b/package/libebml/Makefile
new file mode 100644
index 000000000..5605116f6
--- /dev/null
+++ b/package/libebml/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= libebml
+PKG_VERSION:= 1.3.3
+PKG_RELEASE:= 1
+PKG_HASH:= 35fb44daa41961f94a0ac1b8f06801e88cc9bf2ad6f562ced8ab7c1f1a875499
+PKG_DESCR:= extensible binary meta language library
+PKG_SECTION:= libs/misc
+PKG_URL:= https://www.matroska.org/
+PKG_SITES:= http://dl.matroska.org/downloads/libebml/
+PKG_OPTS:= dev
+
+DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBEBML,libebml,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
+
+libebml-install:
+ $(INSTALL_DIR) $(IDIR_LIBEBML)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libebml*.so* \
+ $(IDIR_LIBEBML)/usr/lib
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk