18 lines
377 B
Plaintext
18 lines
377 B
Plaintext
# Description: Library for opening, seeking, and decoding .opus files
|
|
# URL: http://www.opus-codec.org/
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
# Depends on: libogg opus
|
|
|
|
name=opusfile
|
|
version=0.7
|
|
release=1
|
|
|
|
source=(http://downloads.xiph.org/releases/opus/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|