From patchwork Fri Nov 3 06:34:11 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Stefan_Fr=C3=B6berg?= X-Patchwork-Id: 834206 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yTldY6dFcz9sNr for ; Sun, 5 Nov 2017 04:08:17 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 5C1F788218; Sat, 4 Nov 2017 17:08:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GBXuPnea96fy; Sat, 4 Nov 2017 17:08:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 301F5881CA; Sat, 4 Nov 2017 17:08:11 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id F30C91C0539 for ; Sat, 4 Nov 2017 17:08:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EDE7F8781C for ; Sat, 4 Nov 2017 17:08:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MJl3oFAaQQ8w for ; Sat, 4 Nov 2017 17:08:07 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.petroprogram.com (mail.petroprogram.com [194.89.34.74]) by whitealder.osuosl.org (Postfix) with ESMTPS id 2C54A8780E for ; Sat, 4 Nov 2017 17:08:07 +0000 (UTC) Received: from localhost.localdomain (85-76-41-251-nat.elisa-mobile.fi [85.76.41.251]) (using TLSv1.2 with cipher AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: stefan.froberg@petroprogram.com) by mail.petroprogram.com (Postfix) with ESMTPSA id AF6B041EEB; Sat, 4 Nov 2017 20:11:17 +0200 (EET) From: =?utf-8?q?Stefan_Fr=C3=B6berg?= To: buildroot@buildroot.org Date: Fri, 3 Nov 2017 06:34:11 +0000 Message-Id: <1509690851-23677-1-git-send-email-stefan.froberg@petroprogram.com> X-Mailer: git-send-email 2.7.3 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/1] zlib-ng: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?utf-8?q?Stefan_Fr=C3=B6berg?= Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" zlib-ng, SIMD optimized zlib Signed-off-by: Stefan Fröberg --- package/Config.in | 1 + package/zlib-ng/Config.in | 8 ++++++++ package/zlib-ng/zlib-ng.mk | 15 +++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 package/zlib-ng/Config.in create mode 100644 package/zlib-ng/zlib-ng.mk diff --git a/package/Config.in b/package/Config.in index dbfb288..3e2b034 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1003,6 +1003,7 @@ menu "Compression and decompression" source "package/snappy/Config.in" source "package/szip/Config.in" source "package/zlib/Config.in" + source "package/zlib-ng/Config.in" endmenu menu "Crypto" diff --git a/package/zlib-ng/Config.in b/package/zlib-ng/Config.in new file mode 100644 index 0000000..06de97c --- /dev/null +++ b/package/zlib-ng/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_ZLIB_NG + bool "zlib-ng" + help + zlib replacement with optimizations for + "next generation" systems. + + https://github.com/Dead2/zlib-ng + diff --git a/package/zlib-ng/zlib-ng.mk b/package/zlib-ng/zlib-ng.mk new file mode 100644 index 0000000..eaa93cd --- /dev/null +++ b/package/zlib-ng/zlib-ng.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# zlib-ng +# +################################################################################ + +ZLIB_NG_SITE = https://github.com/Dead2/zlib-ng.git +ZLIB_NG_SOURCE = develop.zip +ZLIB_NG_SUBDIR = zlib-ng-develop +ZLIB_NG_EXTRACT_CMDS = unzip $(DL_DIR)/$(ZLIB_NG_SOURCE) -d $(ZLIB_NG_DIR) +ZLIB_NG_LICENSE = Zlib +ZLIB_NG_LICENSE_FILES = README.md +ZLIB_NG_INSTALL_STAGING = YES + +$(eval $(cmake-package))