~alpine/aports

testing/pavucontrol: new aport v1 PROPOSED

Noam Preil: 1
 testing/pavucontrol: new aport

 1 files changed, 39 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/2926/mbox | git am -3
Learn more about email & git

[PATCH] testing/pavucontrol: new aport Export this patch

https://freedesktop.org/software/pulseaudio/pavucontrol/
Pulseaudio Volume Control, GTK based mixer for Pulseaudio
---
 testing/pavucontrol/APKBUILD | 39 ++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 testing/pavucontrol/APKBUILD

diff --git a/testing/pavucontrol/APKBUILD b/testing/pavucontrol/APKBUILD
new file mode 100644
index 00000000..cf1acf77
--- /dev/null
+++ b/testing/pavucontrol/APKBUILD
@@ -0,0 +1,39 @@
# Maintainer: Noam Preil <pleasantatk@gmail.com>
pkgname="pavucontrol"
pkgver="4.0"
pkgrel=0
pkgdesc="Pulseaudio Volume Control, GTK based mixer for Pulseaudio"
url="https://freedesktop.org/software/pulseaudio/pavucontrol/"
arch="all"
license="GPL-2.0-or-later"
depends="pulseaudio"
makedepends="m4 automake gtkmm3-dev glade-dev pulseaudio-dev"
install=""
source="https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-$pkgver.tar.gz"

build() {
	# Replace with proper build command(s)
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--datadir=/usr/share \
		--disable-lynx \
                --disable-nls
	make
}

check() {
	# Replace with proper check command(s)
	make check
}

package() {
	# Replace with proper package command(s)
	make DESTDIR="$pkgdir" install
}

sha512sums="fd58657d399349f22b52b55f946ea9e62f6278f087c945a54f4b61aa72fde92fb69f9bf7762f5db88235a0038535023faf92d8bb1f5d9f8b7168ccb2166386d3  pavucontrol-4.0.tar.gz"
-- 
2.23.0
Hello Noam,

I've provided some feedback inline

On Mon, Aug 19, 2019 at 01:29:29AM -0400, Noam Preil wrote: