first commit
This commit is contained in:
3
src/opus/.gitignore
vendored
Normal file
3
src/opus/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/opus/changes.md
Normal file
2
src/opus/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.3.1
|
||||
First version
|
18
src/opus/pkg.sh
Normal file
18
src/opus/pkg.sh
Normal file
@ -0,0 +1,18 @@
|
||||
NAME="opus"
|
||||
DESC="Lossy audio compression format"
|
||||
VERSION="1.3.1"
|
||||
FILES=("https://archive.mozilla.org/pub/opus/opus-$VERSION.tar.gz")
|
||||
HASHES=("d7c07db796d21c9cf1861e0c2b0c0617")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.gz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-static \
|
||||
--docdir=/usr/share/doc/opus-$VERSION
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -r $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user