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

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

View File

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

18
src/libsamplerate/pkg.sh Normal file
View File

@@ -0,0 +1,18 @@
NAME="libsamplerate"
DESC="Sample rate converter for audio"
VERSION="0.2.2"
FILES=("https://github.com/libsndfile/libsamplerate/archive/refs/tags/$VERSION.tar.gz")
HASHES=("16e881487f184250deb4fcb60432d7556ab12cb58caea71ef23960aec6c0405a")
DEPENDS=("alsa-lib" "libsndfile")
PACKAGE() {
tar xf $VERSION.tar.gz
cd $NAME-$VERSION
./autogen.sh && ./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/libsamplerate-$VERSION
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}