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/libcanberra/.gitignore vendored Normal file
View File

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

View File

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

16
src/libcanberra/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="libcanberra"
DESC="Implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME"
VERSION="0.30"
FILES=("https://0pointer.de/lennart/projects/libcanberra/libcanberra-$VERSION.tar.xz")
HASHES=("34cb7e4430afaf6f447c4ebdb9b42072")
DEPENDS=("libvorbis" "gtk3" "gtk2" "alsa-lib" "gstreamer")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr --disable-oss
make && make DESTDIR="$ROOTDIR" docdir=/usr/share/doc/libcanberra-$VERSION install
cd .. && rm -r $NAME-$VERSION
}