From patchwork Mon Jul 7 19:53:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 367706 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 771D31400D7 for ; Tue, 8 Jul 2014 05:54:01 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B9FC02FE9E; Mon, 7 Jul 2014 19:54:00 +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 PuCy7aLT1hx7; Mon, 7 Jul 2014 19:53:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5AA0A31B5A; Mon, 7 Jul 2014 19:53:57 +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 30D1A1C171A for ; Mon, 7 Jul 2014 19:53:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2DAB58172A for ; Mon, 7 Jul 2014 19:53:56 +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 q1JxuNNKPmXY for ; Mon, 7 Jul 2014 19:53:55 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 57BC4801AE for ; Mon, 7 Jul 2014 19:53:55 +0000 (UTC) Received: from asgard (host210.190-137-235.telecom.net.ar [190.137.235.210]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.9/8.14.9) with ESMTP id s67Jrm0n019679 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 7 Jul 2014 19:53:51 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1404762833; bh=l/OXiDL+ylBsShD2UzTb1pTB6PK+gjSABYFXtdWxW4k=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=STVaPkecHFgNCd80FoKSd8pbfAwKRnXrGUbnrRWws/eAB/FygdL5rNhE/pnt0LEiz UgLGXW0gRSDV+qCRN45ahwTru5aG+qxPTzfkNKkycKk2lSQS0PQc9rKGENZFBx+ntP tAWKItZQCi5+BC0cb8QMNAcUT+keC56rQA6tapC8= Received: by asgard (sSMTP sendmail emulation); Mon, 07 Jul 2014 16:53:15 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 7 Jul 2014 16:53:04 -0300 Message-Id: <1404762784-16079-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.5.5 In-Reply-To: <1404762784-16079-1-git-send-email-gustavo@zacarias.com.ar> References: <1404762784-16079-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] ncmpc: 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: Gustavo Zacarias --- package/Config.in | 1 + package/ncmpc/Config.in | 18 ++++++++++++++++++ package/ncmpc/ncmpc.mk | 15 +++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 package/ncmpc/Config.in create mode 100644 package/ncmpc/ncmpc.mk diff --git a/package/Config.in b/package/Config.in index 4b2dd2b..94b62ea 100644 --- a/package/Config.in +++ b/package/Config.in @@ -20,6 +20,7 @@ menu "Audio and video applications" source "package/mpg123/Config.in" source "package/mplayer/Config.in" source "package/musepack/Config.in" + source "package/ncmpc/Config.in" source "package/on2-8170-libs/Config.in" source "package/opus-tools/Config.in" source "package/pulseaudio/Config.in" diff --git a/package/ncmpc/Config.in b/package/ncmpc/Config.in new file mode 100644 index 0000000..324d8f7 --- /dev/null +++ b/package/ncmpc/Config.in @@ -0,0 +1,18 @@ +config BR2_PACKAGE_NCMPC + bool "ncmpc" + depends on BR2_USE_MMU # fork() + depends on BR2_USE_WCHAR # libglib2 -> gettext + depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 + select BR2_PACKAGE_LIBGLIB2 + select BR2_PACKAGE_LIBMPDCLIENT + select BR2_PACKAGE_NCURSES + help + ncmpc is a fully featured MPD client, which runs in a terminal + (using ncurses). Its goal is to provide a keyboard oriented + and consistent interface to MPD, without wasting resources. + + http://www.musicpd.org/clients/ncmpc/ + +comment "ncmpc needs a toolchain w/ wchar, threads" + depends on BR2_USE_MMU + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS diff --git a/package/ncmpc/ncmpc.mk b/package/ncmpc/ncmpc.mk new file mode 100644 index 0000000..21ac0ae --- /dev/null +++ b/package/ncmpc/ncmpc.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# ncmpc +# +################################################################################ + +NCMPC_VERSION_MAJOR = 0 +NCMPC_VERSION = $(NCMPC_VERSION_MAJOR).21 +NCMPC_SOURCE = ncmpc-$(NCMPC_VERSION).tar.gz +NCMPC_SITE = http://www.musicpd.org/download/ncmpc/$(NCMPC_VERSION_MAJOR) +NCMPC_DEPENDENCIES = host-pkgconf libglib2 libmpdclient ncurses +NCMPC_LICENSE = GPLv2+ +NCMPC_LICENSE_FILES = COPYING + +$(eval $(autotools-package))