[oe-commits] [meta-openembedded] 12/14: zstd: New recipe

git at git.openembedded.org git at git.openembedded.org
Sun Jul 21 16:32:33 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master
in repository meta-openembedded.

commit 163202e10edfb487194b2a6943a128848d2c8dd7
Author: Alex Kiernan <alex.kiernan at gmail.com>
AuthorDate: Fri Jul 19 14:42:56 2019 +0100

    zstd: New recipe
    
    Signed-off-by: Alex Kiernan <alex.kiernan at gmail.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-extended/zstd/zstd_1.4.0.bb | 50 +++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/meta-oe/recipes-extended/zstd/zstd_1.4.0.bb b/meta-oe/recipes-extended/zstd/zstd_1.4.0.bb
new file mode 100644
index 0000000..06357da
--- /dev/null
+++ b/meta-oe/recipes-extended/zstd/zstd_1.4.0.bb
@@ -0,0 +1,50 @@
+SUMMARY = "Zstandard - Fast real-time compression algorithm"
+DESCRIPTION = "Zstandard is a fast lossless compression algorithm, targeting \
+real-time compression scenarios at zlib-level and better compression ratios. \
+It's backed by a very fast entropy stage, provided by Huff0 and FSE library."
+HOMEPAGE = "http://www.zstd.net/"
+SECTION = "console/utils"
+
+LICENSE = "BSD-3-Clause & GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c7f0b161edbe52f5f345a3d1311d0b32 \
+                    file://COPYING;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0"
+
+SRC_URI = "git://github.com/facebook/zstd.git;nobranch=1"
+
+SRCREV = "83b51e9f886be7c2a4d477b6e7bc6db831791d8d"
+UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
+
+S = "${WORKDIR}/git"
+
+do_compile () {
+    oe_runmake
+    oe_runmake -C programs zstd-compress zstd-decompress zstd-frugal
+}
+
+do_install () {
+    oe_runmake install 'DESTDIR=${D}'
+    install -d -m 0755 ${D}${bindir}
+    install -m 0755 ${S}/programs/zstd-compress ${D}${bindir}
+    install -m 0755 ${S}/programs/zstd-decompress ${D}${bindir}
+    install -m 0755 ${S}/programs/zstd-frugal ${D}${bindir}
+}
+
+PACKAGE_BEFORE_PN += " \
+    ${PN}-compress \
+    ${PN}-decompress \
+    ${PN}-frugal \
+"
+
+FILES_${PN}-compress = " \
+    ${bindir}/zstd-compress \
+"
+
+FILES_${PN}-decompress = " \
+    ${bindir}/zstd-decompress \
+"
+
+FILES_${PN}-frugal = " \
+    ${bindir}/zstd-frugal \
+"
+
+BBCLASSEXTEND = "native nativesdk"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list