contrib/pavucontrol/Pkgfile

21 lines
526 B
Plaintext
Raw Normal View History

2018-02-23 10:46:17 +01:00
# Description: PulseAudio Volume Control
# URL: https://freedesktop.org/software/pulseaudio/pavucontrol/
2019-09-12 16:41:55 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gtkmm3 json-glib libcanberra pulseaudio
2018-02-23 10:46:17 +01:00
name=pavucontrol
version=5.0
2018-02-23 10:46:17 +01:00
release=1
source=(http://freedesktop.org/software/pulseaudio/$name/$name-$version.tar.gz)
build() {
2019-09-12 16:41:55 +02:00
export CXXFLAGS="${CXXFLAGs} -std=c++11"
cd $name-$version
./configure --prefix=/usr \
--disable-nls
2019-09-12 16:41:55 +02:00
make
make DESTDIR=$PKG install
2018-02-23 10:46:17 +01:00
2019-09-12 16:41:55 +02:00
rm -r $PKG/usr/share/{doc,locale}
2018-02-23 10:46:17 +01:00
}