diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-02-26 06:26:33 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-02-26 06:27:01 +0100 |
commit | 4fc4fbf63c6b55752579021a460f50d4bf399ae4 (patch) | |
tree | 4cf53eeb1a7d01e9e01e8fe7adf4ae035ea6d291 /package/libmatroska | |
parent | 90a40404b745523f79b1fe2a6160b5fd060bf6a3 (diff) |
libmatroska: new package
Diffstat (limited to 'package/libmatroska')
-rw-r--r-- | package/libmatroska/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/libmatroska/Makefile b/package/libmatroska/Makefile new file mode 100644 index 000000000..90c668be5 --- /dev/null +++ b/package/libmatroska/Makefile @@ -0,0 +1,30 @@ +# 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:= libmatroska +PKG_VERSION:= 1.4.4 +PKG_RELEASE:= 1 +PKG_HASH:= d3efaa9f6d3964351a05bea0f848a8d5dc570e4791f179816ce9a93730296bd7 +PKG_DESCR:= multimedia container format library +PKG_SECTION:= libs/video +PKG_DEPENDS:= libebml +PKG_BUILDDEP:= libebml +PKG_NEEDS:= c++ +PKG_URL:= https://www.matroska.org/ +PKG_SITES:= https://dl.matroska.org/downloads/libmatroska/ +PKG_OPTS:= dev + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2 + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBMATROSKA,libmatroska,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +libmatroska-install: + $(INSTALL_DIR) $(IDIR_LIBMATROSKA)/usr/lib + $(CP) $(WRKINST)/usr/lib/libmatroska*.so* \ + $(IDIR_LIBMATROSKA)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |