first commit
This commit is contained in:
3
src/libcanberra/.gitignore
vendored
Normal file
3
src/libcanberra/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libcanberra/changes.md
Normal file
2
src/libcanberra/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.30
|
||||
First version
|
16
src/libcanberra/pkg.sh
Normal file
16
src/libcanberra/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user