From patchwork Thu Jul 11 23:46:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 258640 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 5BEE52C02E8 for ; Fri, 12 Jul 2013 09:46:22 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 6C02C320D0; Thu, 11 Jul 2013 23:46:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4HbRPxnCLlpk; Thu, 11 Jul 2013 23:46:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id BE0723209A; Thu, 11 Jul 2013 23:46:17 +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 D909A1BFA5E for ; Thu, 11 Jul 2013 23:46:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id ADC098D5C4 for ; Thu, 11 Jul 2013 23:46:16 +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 uGgEWw+hbCfC for ; Thu, 11 Jul 2013 23:46:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pb0-f45.google.com (mail-pb0-f45.google.com [209.85.160.45]) by whitealder.osuosl.org (Postfix) with ESMTPS id C293A8D56C for ; Thu, 11 Jul 2013 23:46:15 +0000 (UTC) Received: by mail-pb0-f45.google.com with SMTP id mc8so8402559pbc.32 for ; Thu, 11 Jul 2013 16:46:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=kPY7ZCK5/dsmH9e4zV0l6aLmAmFS5yF0U76kvH2JKZQ=; b=QSnEYlpNXZulNzmyxPnqO6XOvCFrJsGxKWHbQqqsdA9BNloPOmH/SBf7rVx8oqegMx UId7OV9ctBGIcOo2Wk7/1PRJmXJGjveCjg1bCHK2UCFYGxcNLUtauFDGl38SjyanJKm7 9Va3W6QZ99L3yPKmKsOOg4GkQ/i3trICwR8H5df7xDOFxc1ZXM2SEkM1bWEvTaJWG6N5 87Bi6Q7J6pNjes27Dv3MnAUNatbPLocOFyTGCDlFKXVeSxb/GAv9qpkrmOSoSJDG50d9 cu6V2cNRyg0nxVNBcGVptQYLgYqPppQYW+aT/AYhSUF2v5pAclwTlfEch4eXEHgv5oe6 g4kw== X-Received: by 10.66.11.197 with SMTP id s5mr39861496pab.129.1373586375561; Thu, 11 Jul 2013 16:46:15 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPSA id iq3sm31764224pbb.20.2013.07.11.16.46.14 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 11 Jul 2013 16:46:15 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Thu, 11 Jul 2013 16:46:10 -0700 Message-Id: <1373586370-18676-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 Subject: [Buildroot] [PATCH v2] fdk-aac: new package 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: Gilles Talis --- Changes v2: - Set header separator to 80 chars - Added C++ support dependency - Reworked dependency around supported architectures instead of non-supported architectures package/Config.in | 1 + package/fdk-aac/Config.in | 17 +++++++++++++++++ package/fdk-aac/fdk-aac.mk | 14 ++++++++++++++ 3 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 package/fdk-aac/Config.in create mode 100644 package/fdk-aac/fdk-aac.mk diff --git a/package/Config.in b/package/Config.in index 3186bb7..76e73c4 100644 --- a/package/Config.in +++ b/package/Config.in @@ -377,6 +377,7 @@ menu "Audio/Sound" source "package/alsa-lib/Config.in" source "package/audiofile/Config.in" source "package/celt051/Config.in" +source "package/fdk-aac/Config.in" source "package/libao/Config.in" source "package/libcdaudio/Config.in" source "package/libcue/Config.in" diff --git a/package/fdk-aac/Config.in b/package/fdk-aac/Config.in new file mode 100644 index 0000000..dfc8cc4 --- /dev/null +++ b/package/fdk-aac/Config.in @@ -0,0 +1,17 @@ +config BR2_PACKAGE_FDK_AAC + bool "fdk-aac" + depends on BR2_INSTALL_LIBSTDCPP + # These are the architectures supported by FDK AAC + depends on BR2_i386 || BR2_x86_64 || BR2_arm || BR2_armeb || \ + BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \ + BR2_powerpc || BR2_sh || BR2_sh64 + + help + The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") + is software that implements the MPEG Advanced Audio Coding ("AAC") + encoding and decoding scheme for digital audio + + http://sourceforge.net/projects/opencore-amr/files/fdk-aac/ + +comment "fdk-aac requires a toolchain with C++ support" + depends on !BR2_INSTALL_LIBSTDCPP diff --git a/package/fdk-aac/fdk-aac.mk b/package/fdk-aac/fdk-aac.mk new file mode 100644 index 0000000..325267a --- /dev/null +++ b/package/fdk-aac/fdk-aac.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# fdk-aac +# +################################################################################ + +FDK_AAC_VERSION = 0.1.1 +FDK_AAC_SITE = http://downloads.sourceforge.net/project/opencore-amr/fdk-aac +FDK_AAC_LICENSE = fdk-aac license +FDK_AAC_LICENSE_FILES = NOTICE + +FDK_AAC_INSTALL_STAGING = YES + +$(eval $(autotools-package))