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

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

2
src/libvorbis/changes.md Normal file
View File

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

17
src/libvorbis/pkg.sh Normal file
View File

@@ -0,0 +1,17 @@
NAME="libvorbis"
DESC="General purpose audio and music encoding format"
VERSION="1.3.7"
FILES=("https://downloads.xiph.org/releases/vorbis/libvorbis-$VERSION.tar.xz")
HASHES=("50902641d358135f06a8392e61c9ac77")
DEPENDS=("libogg")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr --disable-static
make && make DESTDIR="$ROOTDIR" install
install -v -m644 doc/Vorbis* "$ROOTDIR/usr/share/doc/libvorbis-$VERSION"
cd .. && rm -r $NAME-$VERSION
}