57 lines
1.2 KiB
Bash
57 lines
1.2 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=pavucontrol
|
|
pkgver=6.1
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="PulseAudio Volume Control"
|
|
url="https://freedesktop.org/software/pulseaudio/pavucontrol/"
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
license=(GPL-2.0-or-later)
|
|
depends=(
|
|
gcc-libs
|
|
glib2
|
|
glibc
|
|
glibmm-2.68
|
|
gtk4
|
|
gtkmm-4.0
|
|
json-glib
|
|
libcanberra
|
|
libpulse
|
|
libsigc++-3.0
|
|
)
|
|
makedepends=(
|
|
git
|
|
lynx
|
|
meson
|
|
)
|
|
checkdepends=(tidy)
|
|
source=("git+https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git?signed#tag=v$pkgver")
|
|
b2sums=('74910adb80e25787b8b22a857dfe6f9ea748376485a8559b0748c1a81e3bae146a33c2a66409aaa8fd33bad2799b1c1fb4507348c2e9411ce3939987c6277f74')
|
|
validpgpkeys=(
|
|
52DFA7B8BAC74687C8A88EF48165E3D1987E2132 # Arun Raghavan <arun@asymptotic.io>
|
|
)
|
|
|
|
prepare() {
|
|
cd pavucontrol
|
|
}
|
|
|
|
build() {
|
|
arch-meson pavucontrol build
|
|
meson compile -C build
|
|
}
|
|
|
|
check() {
|
|
meson test -C build --print-errorlogs
|
|
}
|
|
|
|
package() {
|
|
meson install -C build --destdir "$pkgdir"
|
|
}
|
|
|
|
# vim:set sw=2 sts=-1 et:
|