first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/pavucontrol/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@ -0,0 +1,2 @@
# 5.0
First version

20
src/pavucontrol/pkg.sh Normal file
View File

@ -0,0 +1,20 @@
NAME="pavucontrol"
DESC="Simple GTK based volume control tool for the PulseAudio sound server"
VERSION="5.0"
FILES=("https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-$VERSION.tar.xz")
HASHES=("a4a5dc51dcf4d912443faf3fe8d32b55")
DEPENDS=(
"gtkmm3" "json-glib" "libcanberra"
"libsigc++" "pulseaudio" "pangomm"
"libtool"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr --docdir=/usr/share/doc/pavucontrol-$VERSION
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}