blob: 60fa002f71a4f390d091019e9c62fc70e0e965bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/mkpkg
# description: DSP library from the Speex codec
# url: https://www.speex.org
name=speexdsp
version=1.2.1
release=1
depends=()
source=(https://downloads.xiph.org/releases/speex/speexdsp-$version.tar.gz)
sha256sums=(
"8c777343e4a6399569c72abc38a95b24db56882c83dbdb6c6424a5f4aeb54d3d"
)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|