diff options
Diffstat (limited to 'skip/pavucontrol/pavucontrol.xibuild')
-rw-r--r-- | skip/pavucontrol/pavucontrol.xibuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/skip/pavucontrol/pavucontrol.xibuild b/skip/pavucontrol/pavucontrol.xibuild new file mode 100644 index 0000000..3692e7f --- /dev/null +++ b/skip/pavucontrol/pavucontrol.xibuild @@ -0,0 +1,25 @@ +#!/bin/sh + +NAME="pavucontrol" +DESC="Pulseaudio Volume Control, GTK based mixer for Pulseaudio" + +MAKEDEPS="make " +DEPS="atkmm glib glibmm gtk3 json-glib libcanberra-gtk3 intltool libsigc++ musl pulseaudio gtkmm3" + +PKG_VER=5.0 +SOURCE="https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-$PKG_VER.tar.gz" + +build () { + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --disable-static \ + --disable-lynx \ + --disable-nls + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |