2018-02-23 10:46:17 +01:00
|
|
|
# Description: PulseAudio Volume Control
|
|
|
|
# URL: https://freedesktop.org/software/pulseaudio/pavucontrol/
|
2019-09-12 14:41:55 +00:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2021-08-22 00:14:51 +02:00
|
|
|
# Depends on: gtkmm3 json-glib libcanberra pulseaudio
|
2018-02-23 10:46:17 +01:00
|
|
|
|
|
|
|
name=pavucontrol
|
2021-08-22 00:14:51 +02:00
|
|
|
version=5.0
|
2022-05-22 14:53:16 +02:00
|
|
|
release=2
|
|
|
|
source=(http://freedesktop.org/software/pulseaudio/$name/$name-$version.tar.gz
|
|
|
|
# https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/org.pulseaudio.pavucontrol.png
|
|
|
|
pavucontrol.desktop
|
|
|
|
org.pulseaudio.pavucontrol.png)
|
2018-02-23 10:46:17 +01:00
|
|
|
|
|
|
|
build() {
|
2019-09-12 14:41:55 +00:00
|
|
|
export CXXFLAGS="${CXXFLAGs} -std=c++11"
|
2022-05-22 14:53:16 +02:00
|
|
|
|
2019-09-12 14:41:55 +00:00
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
2022-05-22 14:53:16 +02:00
|
|
|
--disable-lynx \
|
2021-08-22 00:14:51 +02:00
|
|
|
--disable-nls
|
2019-09-12 14:41:55 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2018-02-23 10:46:17 +01:00
|
|
|
|
2019-09-12 14:41:55 +00:00
|
|
|
rm -r $PKG/usr/share/{doc,locale}
|
2022-05-22 14:53:16 +02:00
|
|
|
|
|
|
|
install -Dm755 $SRC/org.pulseaudio.pavucontrol.png $PKG/usr/share/pixmaps/pavucontrol.png
|
|
|
|
install -Dm644 $SRC/$name.desktop $PKG/usr/share/applications/$name.desktop
|
2018-02-23 10:46:17 +01:00
|
|
|
}
|