blob: 1154d83e84d1c0055635f5b0b183b2e35681be94 (
plain)
1 # Description: The CELT ultra-low delay audio codec
2 # URL: https://gitlab.xiph.org/xiph/celt
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libogg
5
6 name=celt51
7 version=0.5.1.3
8 release=1
9 source=(https://gitlab.xiph.org/xiph/celt/-/archive/compat-v0.5.1.3/celt-compat-v0.5.1.3.tar.bz2)
10
11 build() {
12 cd celt-compat-v$version
13
14 ./autogen.sh
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19 }
|