first commit
This commit is contained in:
3
src/libsndfile/.gitignore
vendored
Normal file
3
src/libsndfile/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libsndfile/changes.md
Normal file
2
src/libsndfile/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.2.2
|
||||
First version
|
17
src/libsndfile/pkg.sh
Normal file
17
src/libsndfile/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="libsndfile"
|
||||
DESC="C routines for reading and writing files containing sampled audio data"
|
||||
VERSION="1.2.2"
|
||||
FILES=("https://github.com/libsndfile/libsndfile/releases/download/$VERSION/libsndfile-$VERSION.tar.xz")
|
||||
HASHES=("04e2e6f726da7c5dc87f8cf72f250d04")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--docdir=/usr/share/doc/libsndfile-$VERSION
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user