mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 01:16:26 +00:00
17 lines
411 B
Plaintext
17 lines
411 B
Plaintext
# description : Low-latency audio communication codec
|
|
# depends : libogg
|
|
|
|
name=celt
|
|
version=0.11.3
|
|
commit=6c28805c56d562bec56cc0b31c0d5905ebb5a6ac
|
|
release=1
|
|
source="https://gitlab.xiph.org/xiph/celt/-/archive/v$version/$name-$version.tar.bz2"
|
|
build() {
|
|
cd $name-v$version-$commit
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr --enable-custom-modes --disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|