X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 47387DD3CB2 for ; Sun, 22 Nov 2015 22:59:45 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [81.4.121.103]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id A10D8DD2BE1; Sun, 22 Nov 2015 22:59:44 +0000 (UTC) Received: from localhost (ip5f5ac94a.dynamic.kabel-deutschland.de [95.90.201.74]) by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 8a2ac329 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Sun, 22 Nov 2015 23:59:41 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 2/2] community/mpv: compile with rsound support Date: Sun, 22 Nov 2015 23:59:32 +0100 Message-Id: <1448233172-7247-2-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1448233172-7247-1-git-send-email-soeren+git@soeren-tempel.net> References: <1448233172-7247-1-git-send-email-soeren+git@soeren-tempel.net> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: This adds RSound support to mpv using librsound. This allows you to use the audio output from another computer on your network. This feature is similar to PluseAudios TCP module. Sending this to patchwork instead of committing it myself because it is rather uncommon to compile mpv with rsound support by default, however, it doesn't hurt and I find this feature very useful. --- community/mpv/APKBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/community/mpv/APKBUILD b/community/mpv/APKBUILD index f81b1bf..d4eceaf 100644 --- a/community/mpv/APKBUILD +++ b/community/mpv/APKBUILD @@ -4,17 +4,17 @@ # Maintainer: Natanael Copa pkgname=mpv pkgver=0.13.0 -pkgrel=1 +pkgrel=2 pkgdesc="Video player based on MPlayer/mplayer2" url="http://mpv.io/" arch="all" license="GPL" -depends= +depends="" makedepends="libxxf86dga-dev libxv-dev libmad-dev lame-dev libao-dev libtheora-dev xvidcore-dev zlib-dev sdl-dev freetype-dev x264-dev faac-dev ttf-dejavu libxvmc-dev alsa-lib-dev libva-dev mesa-dev ffmpeg-dev libass-dev perl lua5.2-dev libvdpau-dev python - libxext-dev libxscrnsaver-dev py-docutils" + libxext-dev libxscrnsaver-dev py-docutils rsound-dev" install="" subpackages=" $pkgname-doc @@ -44,6 +44,7 @@ build() { --enable-libass \ --enable-zsh-comp \ --enable-xss \ + --enable-rsound \ || return 1 ./waf build || return 1 } -- 2.6.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---