From patchwork Tue Mar 20 23:16:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sagaert Johan X-Patchwork-Id: 147869 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id E5D54B6EF3 for ; Wed, 21 Mar 2012 10:17:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 306C8A02B8; Tue, 20 Mar 2012 23:17:23 +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 AhvGJbUJTIEA; Tue, 20 Mar 2012 23:17:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id C4A42A0326; Tue, 20 Mar 2012 23:17:20 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 2977F8F75B for ; Tue, 20 Mar 2012 23:17:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 176AA8D09F for ; Tue, 20 Mar 2012 23:17:19 +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 soBR7-G1LA5C for ; Tue, 20 Mar 2012 23:17:17 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailrelay008.isp.belgacom.be (mailrelay008.isp.belgacom.be [195.238.6.174]) by whitealder.osuosl.org (Postfix) with ESMTP id D54AB8CF74 for ; Tue, 20 Mar 2012 23:17:16 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAJcPaU9R8Zi7/2dsb2JhbABEtmaBCIIKAQVWIxA/EjkeGQmIBbcOjV+DIgSVX5Angmg Received: from 187.152-241-81.adsl-dyn.isp.belgacom.be (HELO debian.APEX) ([81.241.152.187]) by relay.skynet.be with ESMTP; 21 Mar 2012 00:17:16 +0100 From: Sagaert Johan To: buildroot@busybox.net Date: Wed, 21 Mar 2012 00:16:57 +0100 Message-Id: <1332285417-2158-2-git-send-email-sagaert.johan@skynet.be> X-Mailer: git-send-email 1.7.9.3 In-Reply-To: <1332285417-2158-1-git-send-email-sagaert.johan@skynet.be> References: <1332285417-2158-1-git-send-email-sagaert.johan@skynet.be> Cc: Sagaert Johan Subject: [Buildroot] [PATCH v1 1/1] new package : gsl the GNU Scientific Library. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Sagaert Johan Acked-by: Arnout Vandecappelle (Essensium/Mind) --- package/Config.in | 1 + package/libgsl/Config.in | 8 ++++++++ package/libgsl/gsl.mk | 11 +++++++++++ 3 files changed, 20 insertions(+) create mode 100644 package/libgsl/Config.in create mode 100644 package/libgsl/gsl.mk diff --git a/package/Config.in b/package/Config.in index 85583c6..11be301 100644 --- a/package/Config.in +++ b/package/Config.in @@ -382,6 +382,7 @@ source "package/libelf/Config.in" source "package/libevent/Config.in" source "package/libev/Config.in" source "package/libffi/Config.in" +source "package/libgsl/Config.in" source "package/libglib2/Config.in" source "package/libical/Config.in" source "package/libnspr/Config.in" diff --git a/package/libgsl/Config.in b/package/libgsl/Config.in new file mode 100644 index 0000000..b81bc76 --- /dev/null +++ b/package/libgsl/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_LIBGSL + bool "libgsl" + help + The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. + The library provides a wide range of mathematical routines such as random number generators, + special functions and least-squares fitting. + There are over 1000 functions in total with an extensive test suite. + http://www.gnu.org/software/gsl diff --git a/package/libgsl/gsl.mk b/package/libgsl/gsl.mk new file mode 100644 index 0000000..a53c196 --- /dev/null +++ b/package/libgsl/gsl.mk @@ -0,0 +1,11 @@ +############################################################# +# +# gnu gsl +# +############################################################# +LIBGSL_VERSION = 1.15 +LIBGSL_SOURCE = gsl-$(LIBGSL_VERSION).tar.gz +LIBGSL_SITE = $(BR2_GNU_MIRROR)/gsl +LIBGSL_INSTALL_STAGING = YES + +$(eval $(call AUTOTARGETS))